mirror of
https://github.com/arkorty/B.Tech-Project-III.git
synced 2026-04-19 12:41:48 +00:00
133 lines
4.5 KiB
TypeScript
133 lines
4.5 KiB
TypeScript
"use client"
|
|
|
|
import { Github, Linkedin, Mail, Twitter } from "lucide-react"
|
|
import Link from "next/link"
|
|
|
|
export function Footer() {
|
|
const currentYear = new Date().getFullYear()
|
|
|
|
return (
|
|
<footer className="bg-gray-50 border-t-2 border-gray-200 mt-0">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
|
|
<div className="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
|
|
{/* Brand */}
|
|
<div>
|
|
<div className="flex items-center gap-2 mb-4">
|
|
<div className="w-8 h-8 bg-primary flex items-center justify-center border-2 border-primary">
|
|
<span className="text-white text-sm font-bold">C</span>
|
|
</div>
|
|
<span className="font-bold text-lg text-gray-900">
|
|
D.M.T.P
|
|
</span>
|
|
</div>
|
|
<p className="text-gray-600 text-sm">AI-powered microtask marketplace on Celo Sepolia</p>
|
|
</div>
|
|
|
|
{/* Product */}
|
|
<div>
|
|
<h3 className="font-bold mb-4 text-gray-900">Product</h3>
|
|
<ul className="space-y-2 text-sm text-gray-600">
|
|
<li>
|
|
<Link href="/marketplace" className="hover:text-primary transition-colors">
|
|
Marketplace
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="/dashboard" className="hover:text-primary transition-colors">
|
|
Dashboard
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="#" className="hover:text-primary transition-colors">
|
|
Pricing
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="#" className="hover:text-primary transition-colors">
|
|
Features
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{/* Company */}
|
|
<div>
|
|
<h3 className="font-bold mb-4 text-gray-900">Company</h3>
|
|
<ul className="space-y-2 text-sm text-gray-600">
|
|
<li>
|
|
<Link href="#" className="hover:text-primary transition-colors">
|
|
About
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="#" className="hover:text-primary transition-colors">
|
|
Blog
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="#" className="hover:text-primary transition-colors">
|
|
Careers
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="#" className="hover:text-primary transition-colors">
|
|
Contact
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{/* Social */}
|
|
<div>
|
|
<h3 className="font-bold mb-4 text-gray-900">Follow Us</h3>
|
|
<div className="flex gap-4">
|
|
<a
|
|
href="#"
|
|
className="text-gray-600 hover:text-primary transition-colors"
|
|
>
|
|
<Twitter className="w-5 h-5" />
|
|
</a>
|
|
<a
|
|
href="#"
|
|
className="text-gray-600 hover:text-primary transition-colors"
|
|
>
|
|
<Github className="w-5 h-5" />
|
|
</a>
|
|
<a
|
|
href="#"
|
|
className="text-gray-600 hover:text-primary transition-colors"
|
|
>
|
|
<Linkedin className="w-5 h-5" />
|
|
</a>
|
|
<a
|
|
href="#"
|
|
className="text-gray-600 hover:text-primary transition-colors"
|
|
>
|
|
<Mail className="w-5 h-5" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Divider */}
|
|
<div className="border-t-2 border-gray-200 pt-8">
|
|
<div className="flex flex-col md:flex-row justify-between items-center text-sm text-gray-600">
|
|
<p>© {currentYear} D.M.T.P. All rights reserved.</p>
|
|
<div className="flex gap-6 mt-4 md:mt-0">
|
|
<Link href="#" className="hover:text-primary transition-colors">
|
|
Privacy Policy
|
|
</Link>
|
|
<Link href="#" className="hover:text-primary transition-colors">
|
|
Terms of Service
|
|
</Link>
|
|
<Link href="#" className="hover:text-primary transition-colors">
|
|
Cookie Policy
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|