Update src/app/page.tsx

This commit is contained in:
2026-05-23 01:26:31 +00:00
parent 08c9306c53
commit e144bde58b

View File

@@ -32,7 +32,7 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Shop", id: "#products" },
{ name: "Products", id: "/products" },
{ name: "Manufacturing", id: "#features" },
{ name: "Capabilities", id: "#metrics" },
{ name: "Contact", id: "#contact" },
@@ -53,7 +53,7 @@ export default function LandingPage() {
{ name: "David Wu", handle: "@sourcing_expert", testimonial: "The best partner for scalable injection molding. Exceptional quality control every step of the way.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/handsome-groom-classy-black-suit-stands-dark-room_8353-7083.jpg?_wi=1" },
{ name: "Jessica Lee", handle: "@quality_manager", testimonial: "Outstanding communication and technical support throughout the entire production cycle.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg?_wi=1" },
]}
buttons={[{ text: "Shop Our Brand", href: "#products" }, { text: "Explore Custom Solutions", href: "#features" }]}
buttons={[{ text: "Shop Our Brand", href: "/products" }, { text: "Explore Custom Solutions", href: "#features" }]}
imageSrc="http://img.b2bpic.net/free-photo/pharmacy-industry-factory-man-worker-protective-clothing-sterile-working-conditions-operating-pharmaceutical-equipment_645730-446.jpg"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/businesswoman-working-warehouse_329181-12782.jpg", alt: "Businesswoman working in warehouse" },
@@ -184,7 +184,7 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281305.jpg"
logoText="Plásticos Kame"
columns={[
{ title: "Platform", items: [{ label: "Shop", href: "#products" }, { label: "About", href: "#" }, { label: "Custom Solutions", href: "#features" }] },
{ title: "Platform", items: [{ label: "Shop", href: "/products" }, { label: "About", href: "#" }, { label: "Custom Solutions", href: "#features" }] },
{ 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: "#" }] },
]}
@@ -193,4 +193,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}