Update components/footer.tsx
This commit is contained in:
parent
fbc8703be5
commit
aca451752f
|
|
@ -0,0 +1,25 @@
|
|||
"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>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue