@@ -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
3628export 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" >
0 commit comments