46 lines
2.0 KiB
TypeScript
46 lines
2.0 KiB
TypeScript
import { Container } from "@/components/container";
|
|
import { Logo } from "@/components/Logo";
|
|
import Link from "next/link";
|
|
|
|
export function Footer() {
|
|
return (
|
|
<footer className="border-t py-16 bg-white">
|
|
<Container>
|
|
<div className="grid grid-cols-1 md:grid-cols-4 gap-12">
|
|
<div className="col-span-1 md:col-span-2">
|
|
<Logo />
|
|
<p className="mt-6 text-neutral-600 max-w-sm">
|
|
Miami's premier beauty studio specializing in advanced skin care, luxury facials, and professional beauty treatments. Your glow starts here.
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<h4 className="font-bold mb-6">Quick Links</h4>
|
|
<ul className="space-y-4">
|
|
<li><Link href="#services" className="text-neutral-600 hover:text-pink-600 transition-colors">Services</Link></li>
|
|
<li><Link href="#about" className="text-neutral-600 hover:text-pink-600 transition-colors">About Us</Link></li>
|
|
<li><Link href="#contact" className="text-neutral-600 hover:text-pink-600 transition-colors">Book Now</Link></li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h4 className="font-bold mb-6">Hours</h4>
|
|
<ul className="space-y-2 text-neutral-600">
|
|
<li>Mon - Fri: 9am - 7pm</li>
|
|
<li>Saturday: 10am - 6pm</li>
|
|
<li>Sunday: Closed</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div className="mt-16 pt-8 border-t flex flex-col md:flex-row justify-between items-center gap-4">
|
|
<p className="text-sm text-neutral-500">
|
|
© {new Date().getFullYear()} Lumina Beauty Miami. All rights reserved.
|
|
</p>
|
|
<div className="flex gap-6">
|
|
<Link href="#" className="text-sm text-neutral-500 hover:text-neutral-900">Privacy Policy</Link>
|
|
<Link href="#" className="text-sm text-neutral-500 hover:text-neutral-900">Terms of Service</Link>
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
</footer>
|
|
);
|
|
}
|