Update components/footer.tsx
This commit is contained in:
parent
ee19d26d4a
commit
c18201223d
|
|
@ -0,0 +1,41 @@
|
|||
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 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-4 text-neutral-600 max-w-sm">
|
||||
El Palacio de Teni es tu socio estratégico en la venta de calzado por mayoreo.
|
||||
Calidad, confianza y rapidez en cada envío.
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<h4 className="font-bold mb-4">Enlaces</h4>
|
||||
<ul className="space-y-2 text-sm text-neutral-600">
|
||||
<li><Link href="/">Inicio</Link></li>
|
||||
<li><Link href="/#catalog">Catálogo</Link></li>
|
||||
<li><Link href="/tracking">Rastrear Pedido</Link></li>
|
||||
<li><Link href="/admin">Admin</Link></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h4 className="font-bold mb-4">Contacto</h4>
|
||||
<ul className="space-y-2 text-sm text-neutral-600">
|
||||
<li>Email: palacioteni@outlook.com</li>
|
||||
<li>WhatsApp: +1 (555) 123-4567</li>
|
||||
<li>Ubicación: Distribución Internacional</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div className="mt-12 pt-8 border-t text-center text-sm text-neutral-500">
|
||||
© {new Date().getFullYear()} EL PALACIO DE TENI. Todos los derechos reservados.
|
||||
</div>
|
||||
</Container>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue