11import Link from 'next/link'
22import { Github , Twitter , Linkedin } from 'lucide-react'
3+ import Image from 'next/image'
34
45export function Footer ( ) {
56 return (
@@ -8,14 +9,20 @@ export function Footer() {
89 < div className = "grid grid-cols-2 md:grid-cols-4 gap-8 mb-8" >
910 < div className = "col-span-2 md:col-span-1" >
1011 < div className = "flex items-center gap-2 mb-4" >
11- < div className = "h-8 w-8 rounded-lg bg-gradient-to-br from-primary via-secondary to-accent" />
12+ < Image
13+ src = '/assets/logo2.png'
14+ alt = "Logo"
15+ width = { 20 }
16+ height = { 20 }
17+ className = "h-10 w-10 object-cover"
18+ />
1219 < span className = "text-xl font-bold" > TaskChain</ span >
1320 </ div >
1421 < p className = "text-sm text-muted-foreground leading-relaxed" >
1522 Secure freelance platform powered by Stellar blockchain escrow.
1623 </ p >
1724 </ div >
18-
25+
1926 < div >
2027 < h3 className = "font-semibold mb-4" > Platform</ h3 >
2128 < ul className = "space-y-2 text-sm text-muted-foreground" >
@@ -41,7 +48,7 @@ export function Footer() {
4148 </ li >
4249 </ ul >
4350 </ div >
44-
51+
4552 < div >
4653 < h3 className = "font-semibold mb-4" > Resources</ h3 >
4754 < ul className = "space-y-2 text-sm text-muted-foreground" >
@@ -67,7 +74,7 @@ export function Footer() {
6774 </ li >
6875 </ ul >
6976 </ div >
70-
77+
7178 < div >
7279 < h3 className = "font-semibold mb-4" > Legal</ h3 >
7380 < ul className = "space-y-2 text-sm text-muted-foreground" >
@@ -89,12 +96,12 @@ export function Footer() {
8996 </ ul >
9097 </ div >
9198 </ div >
92-
99+
93100 < div className = "flex flex-col md:flex-row items-center justify-between pt-8 border-t border-border/40 gap-4" >
94101 < p className = "text-sm text-muted-foreground" >
95102 © 2024 TaskChain. All rights reserved.
96103 </ p >
97-
104+
98105 < div className = "flex items-center gap-4" >
99106 < Link
100107 href = "https://twitter.com"
0 commit comments