11import React from 'react' ;
22import Image from 'next/image' ;
33import Link from 'next/link' ;
4+ import { IconBinary , IconBinaryTree } from '@tabler/icons-react' ;
45import { Icon , Text } from 'opub-ui' ;
56
67import { Icons } from '@/components/icons' ;
7- import { IconBinary , IconBinaryTree } from '@tabler/icons-react' ;
88
99const MainFooter = ( ) => {
1010 return (
@@ -14,12 +14,17 @@ const MainFooter = () => {
1414 < div className = "flex flex-wrap justify-between gap-8 " >
1515 { ' ' }
1616 < div className = "flex items-center gap-2" >
17- < Image src = { '/logo.png' } width = { 38 } height = { 38 } alt = "logo" />
17+ < Image
18+ src = { '/globe_logo.png' }
19+ width = { 38 }
20+ height = { 38 }
21+ alt = "logo"
22+ />
1823 < Text variant = "headingXl" className = "text-surfaceDefault" as = "h1" >
1924 CivicDataSpace
2025 </ Text >
2126 </ div >
22- < div className = " flex flex-col lg:items-end gap-2 " >
27+ < div className = " flex flex-col gap-2 lg:items-end" >
2328 < div >
2429 { ' ' }
2530 < Text
@@ -32,21 +37,21 @@ const MainFooter = () => {
3237
3338 < div className = " flex gap-3" >
3439 < div className = " h-10 w-10 rounded-5 bg-secondaryOrange p-2" >
35- < Icon source = { Icons . twitter } size = { 24 } color = "onBgDefault " />
40+ < Icon source = { Icons . twitter } size = { 24 } color = "highlight " />
3641 </ div >
3742 < div className = " h-10 w-10 rounded-5 bg-secondaryOrange p-2" >
38- < Icon source = { Icons . linkedin } size = { 24 } color = "onBgDefault " />
43+ < Icon source = { Icons . linkedin } size = { 24 } color = "highlight " />
3944 </ div >
4045 < div className = " h-10 w-10 rounded-5 bg-secondaryOrange p-2" >
41- < Icon source = { Icons . facebook } size = { 24 } color = "onBgDefault " />
46+ < Icon source = { Icons . facebook } size = { 24 } color = "highlight " />
4247 </ div >
4348 < div className = " h-10 w-10 rounded-5 bg-secondaryOrange p-2" >
44- < Icon source = { Icons . github } size = { 24 } color = "onBgDefault " />
49+ < Icon source = { Icons . github } size = { 24 } color = "highlight " />
4550 </ div >
4651 </ div >
4752 </ div >
4853 </ div >
49- < div className = " flex justify-between flex-wrap" >
54+ < div className = " flex flex-wrap gap-6 justify-between " >
5055 < div className = " flex gap-6" >
5156 < Link href = { '#' } >
5257 < Text color = "onBgDefault" > About Us</ Text >
@@ -58,7 +63,12 @@ const MainFooter = () => {
5863 < Text color = "onBgDefault" > Contact Us</ Text >
5964 </ Link >
6065 </ div >
61-
66+ < div className = " flex items-center gap-2" >
67+ < Text color = "onBgDefault" > made by</ Text >
68+ < Link href = { 'https://www.civicdatalab.in' } target = "_blank" >
69+ < Image src = { '/cdl.svg' } width = { 38 } height = { 38 } alt = "logo" />
70+ </ Link >
71+ </ div >
6272 </ div >
6373 </ div >
6474 </ div >
0 commit comments