47 lines
2.4 KiB
TypeScript
47 lines
2.4 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-12 md:py-20 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">
|
|
HerCraft is a community-driven marketplace dedicated to empowering women artists and housewives by providing a platform to sell their unique, handmade creations.
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<h4 className="font-bold text-neutral-900 mb-6">Platform</h4>
|
|
<ul className="space-y-4">
|
|
<li><Link href="#explore" className="text-neutral-600 hover:text-pink-600 transition-colors">Explore</Link></li>
|
|
<li><Link href="#sell" className="text-neutral-600 hover:text-pink-600 transition-colors">Sell on HerCraft</Link></li>
|
|
<li><Link href="#about" className="text-neutral-600 hover:text-pink-600 transition-colors">Our Story</Link></li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h4 className="font-bold text-neutral-900 mb-6">Support</h4>
|
|
<ul className="space-y-4">
|
|
<li><Link href="#" className="text-neutral-600 hover:text-pink-600 transition-colors">Help Center</Link></li>
|
|
<li><Link href="#" className="text-neutral-600 hover:text-pink-600 transition-colors">Privacy Policy</Link></li>
|
|
<li><Link href="#" className="text-neutral-600 hover:text-pink-600 transition-colors">Terms of Service</Link></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div className="border-t mt-12 md:mt-20 pt-8 flex flex-col md:flex-row justify-between items-center gap-4">
|
|
<p className="text-sm text-neutral-500">
|
|
© {new Date().getFullYear()} HerCraft. All rights reserved.
|
|
</p>
|
|
<div className="flex gap-6">
|
|
<Link href="#" className="text-neutral-400 hover:text-pink-600 transition-colors">Instagram</Link>
|
|
<Link href="#" className="text-neutral-400 hover:text-pink-600 transition-colors">Twitter</Link>
|
|
<Link href="#" className="text-neutral-400 hover:text-pink-600 transition-colors">Facebook</Link>
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
</footer>
|
|
);
|
|
}
|