Update src/app/products/page.tsx

This commit is contained in:
2026-05-23 01:28:48 +00:00
parent b5015e673a
commit 1703602994

View File

@@ -28,10 +28,10 @@ export default function ProductsPage() {
{ name: "Products", id: "/products" },
{ name: "Manufacturing", id: "/" },
{ name: "Capabilities", id: "/" },
{ name: "Contact", id: "#contact" },
{ name: "Contact", id: "/contact" },
]}
brandName="Plásticos Kame"
button={{ text: "Get Quote", href: "#contact" }}
button={{ text: "Get Quote", href: "/contact" }}
/>
</div>
@@ -69,7 +69,7 @@ export default function ProductsPage() {
logoText="Plásticos Kame"
columns={[
{ title: "Platform", items: [{ label: "Shop", href: "/products" }, { label: "About", href: "/" }, { label: "Custom Solutions", href: "/" }] },
{ title: "Company", items: [{ label: "Inquiry", href: "#contact" }, { label: "Careers", href: "#" }, { label: "Support", href: "#" }] },
{ title: "Company", items: [{ label: "Inquiry", href: "/contact" }, { label: "Careers", href: "#" }, { label: "Support", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }, { label: "Certifications", href: "#" }] },
]}
/>
@@ -77,4 +77,4 @@ export default function ProductsPage() {
</ReactLenis>
</ThemeProvider>
);
}
}