26 lines
1.0 KiB
TypeScript
26 lines
1.0 KiB
TypeScript
"use client";
|
|
|
|
import { Container } from "@/components/container";
|
|
import Link from "next/link";
|
|
|
|
export function Footer() {
|
|
return (
|
|
<footer className="bg-stone-950 py-12 border-t border-stone-900">
|
|
<Container>
|
|
<div className="flex flex-col md:flex-row justify-between items-center gap-6">
|
|
<div className="text-center md:text-left">
|
|
<h2 className="text-2xl font-serif text-amber-50 mb-2">Lumière</h2>
|
|
<p className="text-stone-500 text-sm">© {new Date().getFullYear()} Lumière Dining. All rights reserved.</p>
|
|
</div>
|
|
|
|
<nav className="flex gap-8">
|
|
<Link href="#" className="text-stone-400 hover:text-amber-500 transition-colors text-sm">Privacy Policy</Link>
|
|
<Link href="#" className="text-stone-400 hover:text-amber-500 transition-colors text-sm">Terms of Service</Link>
|
|
<Link href="#" className="text-stone-400 hover:text-amber-500 transition-colors text-sm">Instagram</Link>
|
|
</nav>
|
|
</div>
|
|
</Container>
|
|
</footer>
|
|
);
|
|
}
|