127 lines
4.8 KiB
TypeScript
127 lines
4.8 KiB
TypeScript
import Link from "next/link"
|
||
|
||
function Footer() {
|
||
const currentYear = new Date().getFullYear()
|
||
|
||
return (
|
||
<footer className="bg-card py-12 px-6 md:px-12 lg:px-24 border-t border-border">
|
||
<div className="container mx-auto">
|
||
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
|
||
<div className="md:col-span-1">
|
||
<Link href="/" className="flex items-center gap-2 mb-4">
|
||
<span className="text-2xl font-bold text-primary">MEME</span>
|
||
</Link>
|
||
<p className="text-muted-foreground mb-4">
|
||
The next generation meme coin with real utility and community governance.
|
||
</p>
|
||
<div className="flex space-x-4">
|
||
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">
|
||
<span className="sr-only">Twitter</span>
|
||
<span className="text-xl">🐦</span>
|
||
</a>
|
||
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">
|
||
<span className="sr-only">Telegram</span>
|
||
<span className="text-xl">✈️</span>
|
||
</a>
|
||
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">
|
||
<span className="sr-only">Discord</span>
|
||
<span className="text-xl">💬</span>
|
||
</a>
|
||
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">
|
||
<span className="sr-only">Reddit</span>
|
||
<span className="text-xl">🤖</span>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 className="font-semibold mb-4">Quick Links</h3>
|
||
<ul className="space-y-2">
|
||
<li>
|
||
<Link href="#about" className="text-muted-foreground hover:text-primary transition-colors">
|
||
About
|
||
</Link>
|
||
</li>
|
||
<li>
|
||
<Link href="#tokenomics" className="text-muted-foreground hover:text-primary transition-colors">
|
||
Tokenomics
|
||
</Link>
|
||
</li>
|
||
<li>
|
||
<Link href="#roadmap" className="text-muted-foreground hover:text-primary transition-colors">
|
||
Roadmap
|
||
</Link>
|
||
</li>
|
||
<li>
|
||
<Link href="#community" className="text-muted-foreground hover:text-primary transition-colors">
|
||
Community
|
||
</Link>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 className="font-semibold mb-4">Resources</h3>
|
||
<ul className="space-y-2">
|
||
<li>
|
||
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">
|
||
Whitepaper
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">
|
||
Documentation
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">
|
||
Smart Contract
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">
|
||
Audit Report
|
||
</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div>
|
||
<h3 className="font-semibold mb-4">Legal</h3>
|
||
<ul className="space-y-2">
|
||
<li>
|
||
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">
|
||
Terms of Service
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">
|
||
Privacy Policy
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">
|
||
Disclaimer
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">
|
||
Contact Us
|
||
</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<div className="mt-12 pt-8 border-t border-border text-center text-muted-foreground">
|
||
<p>© {currentYear} MEME Token. All rights reserved.</p>
|
||
<p className="mt-2 text-sm">
|
||
Cryptocurrency investments are subject to high market risk. Please make your investments cautiously.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
)
|
||
}
|
||
|
||
export { Footer }
|