Update src/app/contacto/page.tsx

This commit is contained in:
2026-05-07 14:31:01 +00:00
parent eb948ba9de
commit 97dc6991e2

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterCard from '@/components/sections/footer/FooterCard';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -31,7 +31,7 @@ export default function LandingPage() {
{ name: "Contacto", id: "/contacto" },
]}
brandName="A & B THOMAS"
logoSrc="https://img.b2bpic.net/logo/a-b-thomas-logo.png"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DOnrVgxFLCggVuUVUji9OWqCaB/uploaded-1778164240503-k0jy761o.png"
button={{ text: "Cotiza ahora", href: "/contacto" }}
/>
</div>
@@ -51,22 +51,18 @@ export default function LandingPage() {
<LegalSection
layout="section"
title="Políticas"
sections={[
{
heading: "Términos Generales", content: [{ type: "paragraph", text: "Todos nuestros servicios y ventas están sujetos a disponibilidad técnica y stock." }]
}
]}
sections={[{ heading: "Términos Generales", content: [{ type: "paragraph", text: "Todos nuestros servicios y ventas están sujetos a disponibilidad técnica y stock." }] }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
<FooterLogoEmphasis
logoText="A & B THOMAS"
logoSrc="https://img.b2bpic.net/logo/a-b-thomas-logo.png"
copyrightText="© 2025 A & B THOMAS. Todos los derechos reservados."
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DOnrVgxFLCggVuUVUji9OWqCaB/uploaded-1778164240503-k0jy761o.png"
columns={[{ items: [{ label: "Inicio", href: "/" }, { label: "Productos", href: "/productos" }, { label: "Contacto", href: "/contacto" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}