Update src/app/contact/page.tsx

This commit is contained in:
2026-05-23 01:33:53 +00:00
parent 72302c2590
commit b1a135e17f

View File

@@ -25,8 +25,8 @@ export default function ContactPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Products", id: "/products" },
{ name: "Manufacturing", id: "/" },
{ name: "Capabilities", id: "/" },
{ name: "About", id: "/about" },
{ name: "Manufacturing", id: "/#features" },
{ name: "Contact", id: "/contact" },
]}
brandName="Plásticos Kame"
@@ -53,7 +53,7 @@ export default function ContactPage() {
{ label: "Business Hours: Mon-Fri 8am-6pm", href: "#" },
{ label: "Factory: 123 Industrial Park, Sector 4", href: "#" }
] },
{ title: "Company", items: [{ label: "Shop", href: "/products" }, { label: "Careers", href: "#" }, { label: "Support", href: "#" }] },
{ title: "Company", items: [{ label: "Shop", href: "/products" }, { label: "About", href: "/about" }, { label: "Support", href: "#" }] },
{ title: "Follow Us", items: [{ label: "LinkedIn", href: "#" }, { label: "Twitter", href: "#" }, { label: "Instagram", href: "#" }] },
]}
/>
@@ -61,4 +61,4 @@ export default function ContactPage() {
</ReactLenis>
</ThemeProvider>
);
}
}