69 lines
3.0 KiB
TypeScript
69 lines
3.0 KiB
TypeScript
"use client";
|
|
import { Container } from "@/components/container";
|
|
import { Logo } from "@/components/Logo";
|
|
import Link from "next/link";
|
|
import { MessageCircle } from "lucide-react";
|
|
|
|
export function Footer() {
|
|
return (
|
|
<footer id="contact" className="bg-stone-900 text-stone-300 py-20">
|
|
<Container>
|
|
<div className="grid grid-cols-1 md:grid-cols-4 gap-12 mb-16">
|
|
<div className="col-span-1 md:col-span-1">
|
|
<Logo />
|
|
<p className="mt-6 text-sm leading-relaxed">
|
|
The United States distribution arm of Café Quindío.
|
|
Bringing the finest Colombian coffee culture to North America.
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 className="text-white font-bold mb-6">Quick Links</h4>
|
|
<ul className="space-y-4 text-sm">
|
|
<li><Link href="#products" className="hover:text-amber-500 transition">Shop Coffee</Link></li>
|
|
<li><Link href="#story" className="hover:text-amber-500 transition">Our Story</Link></li>
|
|
<li><Link href="#" className="hover:text-amber-500 transition">Shipping Policy</Link></li>
|
|
<li><Link href="#" className="hover:text-amber-500 transition">Wholesale</Link></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 className="text-white font-bold mb-6">Customer Support</h4>
|
|
<ul className="space-y-4 text-sm">
|
|
<li className="flex items-center gap-2">
|
|
<MessageCircle className="w-4 h-4 text-green-500" />
|
|
<a href="https://wa.me/your-number" className="hover:text-amber-500 transition">WhatsApp Support</a>
|
|
</li>
|
|
<li>Mon - Fri: 9:00 AM - 5:00 PM</li>
|
|
<li>Available on Amazon & Walmart</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 className="text-white font-bold mb-6">Newsletter</h4>
|
|
<p className="text-sm mb-4">Join our coffee club for exclusive offers and brewing tips.</p>
|
|
<div className="flex gap-2">
|
|
<input
|
|
type="email"
|
|
placeholder="Email address"
|
|
className="bg-stone-800 border-stone-700 rounded px-4 py-2 text-sm w-full focus:outline-none focus:ring-1 focus:ring-amber-500"
|
|
/>
|
|
<button className="bg-amber-800 hover:bg-amber-900 text-white px-4 py-2 rounded text-sm transition">
|
|
Join
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="border-t border-stone-800 pt-8 flex flex-col md:row justify-between items-center gap-4 text-xs">
|
|
<p>© {new Date().getFullYear()} Café Quindío USA. All rights reserved.</p>
|
|
<div className="flex gap-6">
|
|
<Link href="#" className="hover:text-white">Privacy Policy</Link>
|
|
<Link href="#" className="hover:text-white">Terms of Service</Link>
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
</footer>
|
|
);
|
|
}
|