Skip to content

Commit 3d1f0eb

Browse files
committed
update content on home and usecase listing pages
1 parent a82b4fc commit 3d1f0eb

2 files changed

Lines changed: 8 additions & 21 deletions

File tree

app/[locale]/(user)/components/Content.tsx

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,6 @@ const statsInfo: any = graphql(`
2424
}
2525
`);
2626

27-
// const tagsInfo: any = graphql(`
28-
// query TagsData {
29-
// tags {
30-
// id
31-
// value
32-
// }
33-
// }
34-
// `);
3527

3628
export const Content = () => {
3729
const router = useRouter();
@@ -42,9 +34,6 @@ export const Content = () => {
4234
const Stats: { data: any; isLoading: any } = useQuery([`statsDetails`], () =>
4335
GraphQL(statsInfo, {}, [])
4436
);
45-
// const Tags: { data: any; isLoading: any } = useQuery([`tagDetails`], () =>
46-
// GraphQL(tagsInfo, {}, [])
47-
// );
4837

4938
const handleSearch = (value: string) => {
5039
if (value) {
@@ -68,10 +57,6 @@ export const Content = () => {
6857
count: Stats?.data?.stats?.totalPublishers,
6958
link: '/publishers',
7059
},
71-
// {
72-
// label: 'Users',
73-
// count: Stats?.data?.stats?.totalUsers,
74-
// },
7560
{
7661
label: 'Organizations',
7762
count: Stats?.data?.stats?.totalOrganizations,
@@ -86,10 +71,10 @@ export const Content = () => {
8671
<div className="flex flex-col gap-11 lg:w-[60%]">
8772
<div className="flex flex-col gap-2">
8873
<Text variant="heading3xl" color="onBgDefault" className='text-textOnBGDefault1'>
89-
Discover datasets, AI use cases, and civic knowledge
74+
An Open-Source Platform for Collaborative Data-Driven Change
9075
</Text>
9176
<Text variant="headingLg" color="onBgDefault" className='text-textOnBGDefault2'>
92-
Open data and insights for public decision-making.
77+
Share datasets, knowledge resources, and AI use-cases for data changemakers.
9378
</Text>
9479
</div>
9580
<div className="w-full" data-tour="search-bar">

app/[locale]/(user)/usecases/UseCasesListingClient.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,18 @@ const UseCasesListingClient = () => {
1919
<div className="container flex flex-col-reverse justify-center gap-8 p-10 lg:flex-row">
2020
<div className="flex flex-col justify-center gap-6">
2121
<Text variant="heading2xl" className="text-surfaceDefault">
22-
Our Use Cases
22+
Use Cases
2323
</Text>
2424
<Text
2525
variant="headingLg"
2626
fontWeight="regular"
2727
className="leading-3 text-surfaceDefault lg:leading-5"
2828
>
29-
By use case, we mean any data-led intervention across sectors that
30-
can address challenges from hyper-local to global levels
31-
effectively.
29+
Use cases demonstrate how data and responsible AI translate into
30+
real-world impact. Across sectors and scales, they show how
31+
unlocking interoperable data and applying collaborative analytics
32+
can drive measurable outcomes and scalable solutions for public
33+
good.
3234
</Text>
3335
</div>
3436
<Image

0 commit comments

Comments
 (0)