From 53756e0530d6623218ef918d99d3045ce6b43944 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 23 May 2026 01:28:47 +0000 Subject: [PATCH 1/3] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 64 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..87b22a5 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,64 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function ContactPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} From b5015e673a4eb7c237ca90e568d4a095803f755e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 23 May 2026 01:28:48 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f487831..a159d0a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,10 +35,10 @@ export default function LandingPage() { { name: "Products", id: "/products" }, { name: "Manufacturing", id: "#features" }, { name: "Capabilities", id: "#metrics" }, - { name: "Contact", id: "#contact" }, + { name: "Contact", id: "/contact" }, ]} brandName="Plásticos Kame" - button={{ text: "Get Quote", href: "#contact" }} + button={{ text: "Get Quote", href: "/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" }, @@ -168,24 +168,13 @@ export default function LandingPage() { /> -
- -
- @@ -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() { ); -} \ No newline at end of file +}