Skip to content

Commit 25b0840

Browse files
Merge pull request #317 from CivicDataLab/314-update-website-content
Updated Website Content,Enlarged logo and redesigned footer and replaced tags with sectors
2 parents 2f23985 + 8c8d9d8 commit 25b0840

File tree

3 files changed

+26
-21
lines changed

3 files changed

+26
-21
lines changed

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

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,22 +75,26 @@ export const Content = () => {
7575
];
7676

7777
const Sectors = [
78-
'Budgets',
79-
'Child Rights',
80-
'Disaster Risk Reduction',
81-
'Climate Finance',
82-
'Law And Justice',
78+
'Public Finance',
79+
'Law and Justice',
80+
'Climate Action',
8381
'Urban Development',
82+
'Gender',
83+
'Coastal',
84+
'Disaster Risk Reduction',
85+
'Child Rights'
8486
];
8587

8688
return (
8789
<main className="bg-primaryBlue py-6 md:px-8 md:py-10 lg:py-20">
8890
<div className="container flex items-center justify-around gap-20 px-10 md:px-12 lg:px-8 ">
8991
<div className="flex flex-col gap-11 lg:w-[49%]">
90-
<div className="flex flex-col">
92+
<div className="flex flex-col gap-2">
9193
<Text variant="heading3xl" color="onBgDefault">
92-
Share knowledge resources, datasets, and AI use-cases in one open,
93-
collaborative platform for data changemakers.
94+
An Open-Source Platform for Collaborative Data-Driven Change
95+
</Text>
96+
<Text variant="headingLg" color="onBgDefault">
97+
Share datasets, knowledge resources, and AI use-cases for data changemakers.
9498
</Text>
9599
</div>
96100
{Stats.isLoading ? (

app/[locale]/dashboard/components/main-footer.tsx

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const MainFooter = () => {
2727
];
2828
return (
2929
<div className="bg-primaryBlue">
30-
<div className="flex flex-wrap items-center justify-between p-4 lg:px-20 lg:py-6">
30+
<div className="flex items-center justify-between p-4 lg:px-20 lg:py-6">
3131
<div className="flex gap-6 uppercase">
3232
<Link href={'/about-us'}>
3333
<Text color="onBgDefault">About Us</Text>
@@ -36,17 +36,7 @@ const MainFooter = () => {
3636
<Text color="onBgDefault">Contact Us</Text>
3737
</Link>
3838
</div>
39-
<div className="flex items-center gap-2 text-white">
40-
<Text color="onBgDefault">made by</Text>
41-
<Link
42-
href={'https://www.civicdatalab.in'}
43-
target="_blank"
44-
className="h-8 w-8"
45-
>
46-
<Image src={'/cdl.svg'} width={28} height={28} alt="CDL logo" />
47-
</Link>
48-
</div>
49-
<div className="flex gap-3">
39+
<div className="flex gap-3 absolute left-1/2 transform -translate-x-1/2">
5040
{socialMedia.map((item, index) => (
5141
<Link
5242
key={index}
@@ -62,6 +52,17 @@ const MainFooter = () => {
6252
</Link>
6353
))}
6454
</div>
55+
<div className="flex items-center text-white">
56+
<Text color="onBgDefault">Made in India. A DataSpace product by</Text>
57+
<Link
58+
href={'https://www.civicdatalab.in'}
59+
target="_blank"
60+
className="flex items-center gap-2 ml-1"
61+
>
62+
<Text color="onBgDefault">CivicDataLab</Text>
63+
<Image src={'/cdl.svg'} width={40} height={40} alt="CDL logo" />
64+
</Link>
65+
</div>
6566
</div>
6667
</div>
6768
);

app/[locale]/dashboard/components/main-nav.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export function MainNav({ hideSearch = false }) {
139139
</div>
140140
<Link href="/">
141141
<div className="flex items-center gap-2">
142-
<div className="group relative h-[52px] w-[170px] overflow-hidden">
142+
<div className="group relative h-[68px] w-[183px] overflow-hidden">
143143
{/* Static Logo */}
144144
<div className="absolute inset-0">
145145
<Image

0 commit comments

Comments
 (0)