meme/src/components/footer.tsx

127 lines
4.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 }