app-happy-falcon-sprint/components/footer.tsx

78 lines
3.4 KiB
TypeScript

"use client";
import { Container } from "@/components/container";
import Link from "next/link";
import { Instagram, Twitter, Linkedin, Github } from "lucide-react";
export function Footer() {
return (
<footer className="bg-slate-900 text-white py-16">
<Container>
<div className="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12">
{/* Brand */}
<div className="md:col-span-2">
<div className="flex items-center gap-2 mb-4">
<div className="h-8 w-8 bg-gradient-to-br from-violet-600 to-indigo-600 rounded-lg" />
<span className="text-2xl font-bold">NEXUS</span>
</div>
<p className="text-slate-400 mb-6 max-w-md">
An award-winning creative agency crafting exceptional digital experiences that drive results.
</p>
<div className="flex gap-4">
<a href="#" className="w-10 h-10 rounded-full bg-slate-800 hover:bg-violet-600 flex items-center justify-center transition-colors">
<Instagram className="w-5 h-5" />
</a>
<a href="#" className="w-10 h-10 rounded-full bg-slate-800 hover:bg-violet-600 flex items-center justify-center transition-colors">
<Twitter className="w-5 h-5" />
</a>
<a href="#" className="w-10 h-10 rounded-full bg-slate-800 hover:bg-violet-600 flex items-center justify-center transition-colors">
<Linkedin className="w-5 h-5" />
</a>
<a href="#" className="w-10 h-10 rounded-full bg-slate-800 hover:bg-violet-600 flex items-center justify-center transition-colors">
<Github className="w-5 h-5" />
</a>
</div>
</div>
{/* Quick Links */}
<div>
<h3 className="font-bold text-lg mb-4">Quick Links</h3>
<ul className="space-y-2">
<li><a href="#work" className="text-slate-400 hover:text-white transition-colors">Work</a></li>
<li><a href="#services" className="text-slate-400 hover:text-white transition-colors">Services</a></li>
<li><a href="#about" className="text-slate-400 hover:text-white transition-colors">About</a></li>
<li><a href="#contact" className="text-slate-400 hover:text-white transition-colors">Contact</a></li>
</ul>
</div>
{/* Contact */}
<div>
<h3 className="font-bold text-lg mb-4">Get in Touch</h3>
<ul className="space-y-2 text-slate-400">
<li>hello@nexusagency.com</li>
<li>+1 (555) 123-4567</li>
<li className="pt-2">
123 Creative Street<br />
San Francisco, CA 94102
</li>
</ul>
</div>
</div>
<div className="pt-8 border-t border-slate-800 flex flex-col md:flex-row justify-between items-center gap-4">
<p className="text-slate-400 text-sm">
© {new Date().getFullYear()} NEXUS Agency. All rights reserved.
</p>
<div className="flex gap-6 text-sm">
<Link href="#" className="text-slate-400 hover:text-white transition-colors">
Privacy Policy
</Link>
<Link href="#" className="text-slate-400 hover:text-white transition-colors">
Terms of Service
</Link>
</div>
</div>
</Container>
</footer>
);
}