diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..f6f596d
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,63 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
+import MediaAbout from '@/components/sections/about/MediaAbout';
+import FooterMedia from '@/components/sections/footer/FooterMedia';
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index c6c423d..817e463 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -25,8 +25,8 @@ export default function ContactPage() {
@@ -61,4 +61,4 @@ export default function ContactPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index a418372..7d31b7b 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -33,8 +33,8 @@ export default function LandingPage() {
@@ -86,14 +73,7 @@ export default function LandingPage() {
textboxLayout="split-actions"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
- products={[
- { id: "p1", brand: "KameIndustrial", name: "Pharmaceutical Grade Bottle", price: "From $0.45", rating: 5, reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-children-jars-arrangement_23-2149512844.jpg?_wi=1" },
- { id: "p2", brand: "KameIndustrial", name: "Cosmetic Cream Container", price: "From $0.62", rating: 5, reviewCount: "94", imageSrc: "http://img.b2bpic.net/free-photo/kegs-beer-regular-rows_1398-2536.jpg?_wi=1" },
- { id: "p3", brand: "KameIndustrial", name: "Industrial Storage Bin", price: "From $12.50", rating: 4, reviewCount: "87", imageSrc: "http://img.b2bpic.net/free-photo/top-view-glasses-abstract-table_23-2149974241.jpg?_wi=1" },
- { id: "p4", brand: "KameIndustrial", name: "Security Closure Cap", price: "From $0.15", rating: 5, reviewCount: "212", imageSrc: "http://img.b2bpic.net/free-photo/plastic-bottles-blue-background-high-angle_23-2149449759.jpg?_wi=1" },
- { id: "p5", brand: "KameIndustrial", name: "Logistics Crate", price: "From $8.90", rating: 5, reviewCount: "56", imageSrc: "http://img.b2bpic.net/free-photo/plastic-storage-case_1339-5894.jpg" },
- { id: "p6", brand: "KameIndustrial", name: "Sensor Housing Part", price: "From $2.10", rating: 4, reviewCount: "43", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-still-life-arrangement-pvc_23-2149062981.jpg" },
- ]}
+ products={[]}
title="Own-Brand Solutions"
description="Browse our premium line of high-durability plastic containers, closures, and industrial components with instant volume-based pricing."
/>
@@ -120,13 +100,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
- testimonials={[
- { id: "1", name: "Sarah Jenkins", role: "Procurement Manager", company: "GlobalPharma", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-businessman-standing-front-table-writing-diary-with-pen_23-2148087135.jpg?_wi=2" },
- { id: "2", name: "Mark Thornton", role: "Engineering Lead", company: "AutoCorp Solutions", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/professional-inspector-suit-reviewing-solar-panel-production-showcasing-leadership-renewable_482257-135429.jpg?_wi=2" },
- { id: "3", name: "Elena Rodriguez", role: "Operations Director", company: "CosmoTech", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/male-worker-with-arms-crossed-standing-factory_107420-96042.jpg?_wi=2" },
- { id: "4", name: "David Wu", role: "Supply Chain Lead", company: "ConsumerGoods Group", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/handsome-groom-classy-black-suit-stands-dark-room_8353-7083.jpg?_wi=2" },
- { id: "5", name: "Jessica Lee", role: "Quality Manager", company: "Logistics Pro", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg?_wi=2" },
- ]}
+ testimonials={[]}
kpiItems={[
{ value: "98%", label: "Client Retention" },
{ value: "15M+", label: "Units Molded" },
@@ -141,11 +115,7 @@ export default function LandingPage() {
@@ -173,7 +139,7 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281305.jpg?_wi=1"
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: "/about" }, { 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: "#" }] },
]}
@@ -182,4 +148,4 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
index 573feff..be83f8f 100644
--- a/src/app/products/page.tsx
+++ b/src/app/products/page.tsx
@@ -26,8 +26,8 @@ export default function ProductsPage() {
@@ -68,7 +63,7 @@ export default function ProductsPage() {
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281305.jpg?_wi=2"
logoText="Plásticos Kame"
columns={[
- { title: "Platform", items: [{ label: "Shop", href: "/products" }, { label: "About", href: "/" }, { label: "Custom Solutions", href: "/" }] },
+ { title: "Platform", items: [{ label: "Shop", href: "/products" }, { label: "About", href: "/about" }, { 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: "#" }] },
]}
@@ -77,4 +72,4 @@ export default function ProductsPage() {
);
-}
+}
\ No newline at end of file