20 Commits

Author SHA1 Message Date
aa237cc4fc Update src/app/products/page.tsx 2026-05-23 01:33:54 +00:00
8cc61cd9b2 Update src/app/page.tsx 2026-05-23 01:33:54 +00:00
b1a135e17f Update src/app/contact/page.tsx 2026-05-23 01:33:53 +00:00
72302c2590 Add src/app/about/page.tsx 2026-05-23 01:33:53 +00:00
5c93241980 Merge version_3 into main
Merge version_3 into main
2026-05-23 01:29:16 +00:00
e7d76db473 Update src/app/products/page.tsx 2026-05-23 01:29:13 +00:00
ef15873e43 Update src/app/page.tsx 2026-05-23 01:29:13 +00:00
a7b8e9abc5 Update src/app/contact/page.tsx 2026-05-23 01:29:12 +00:00
9e2f3857f1 Merge version_3 into main
Merge version_3 into main
2026-05-23 01:28:51 +00:00
1703602994 Update src/app/products/page.tsx 2026-05-23 01:28:48 +00:00
b5015e673a Update src/app/page.tsx 2026-05-23 01:28:48 +00:00
53756e0530 Add src/app/contact/page.tsx 2026-05-23 01:28:47 +00:00
4de75ad5d8 Merge version_2 into main
Merge version_2 into main
2026-05-23 01:26:59 +00:00
58afc8cb25 Update src/app/products/page.tsx 2026-05-23 01:26:56 +00:00
415ed6af2c Merge version_2 into main
Merge version_2 into main
2026-05-23 01:26:34 +00:00
7b638a973d Add src/app/products/page.tsx 2026-05-23 01:26:31 +00:00
e144bde58b Update src/app/page.tsx 2026-05-23 01:26:31 +00:00
08c9306c53 Merge version_1 into main
Merge version_1 into main
2026-05-21 20:57:34 +00:00
5d150210a2 Merge version_1 into main
Merge version_1 into main
2026-05-21 20:57:10 +00:00
0a14365fd6 Merge version_1 into main
Merge version_1 into main
2026-05-21 20:56:40 +00:00
4 changed files with 216 additions and 59 deletions

63
src/app/about/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="largeSmallSizeMediumTitles"
background="noise"
cardStyle="inset"
primaryButtonStyle="flat"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Manufacturing", id: "/#features" },
{ name: "Contact", id: "/contact" },
]}
brandName="Plásticos Kame"
button={{ text: "Get Quote", href: "/contact" }}
/>
</div>
<div id="about" data-section="about">
<MediaAbout
title="Our Evolution & Industrial Commitment"
description="From our humble beginnings to becoming an industrial powerhouse, our mission remains clear: to deliver precision at scale. We are committed to serving the most demanding industries including pharmaceutical, cosmetic, automotive, and defense. Our facility operates with full 24/7/365 production capacity, utilizing an advanced fleet of 23 injection and blow molding machines to ensure we meet your timelines and quality standards without compromise."
imageSrc="http://img.b2bpic.net/free-photo/industrial-factory-with-machines_23-2149281305.jpg"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281305.jpg?_wi=3"
logoText="Plásticos Kame"
columns={[
{ title: "Contact Info", items: [
{ label: "Business Hours: Mon-Fri 8am-6pm", href: "#" },
{ label: "Factory: 123 Industrial Park, Sector 4", 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: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

64
src/app/contact/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="largeSmallSizeMediumTitles"
background="noise"
cardStyle="inset"
primaryButtonStyle="flat"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Manufacturing", id: "/#features" },
{ name: "Contact", id: "/contact" },
]}
brandName="Plásticos Kame"
button={{ text: "Get Quote", href: "/contact" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Inquire Today"
title="Partner with Plásticos Kame"
description="Ready to discuss your custom manufacturing requirements or scale your existing container procurement? Reach out to our industrial partnership team."
background={{ variant: "gradient-bars" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281305.jpg?_wi=3"
logoText="Plásticos Kame"
columns={[
{ title: "Contact Info", items: [
{ label: "Business Hours: Mon-Fri 8am-6pm", href: "#" },
{ label: "Factory: 123 Industrial Park, Sector 4", 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: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -32,13 +32,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "Shop", id: "#products" }, { name: "Products", id: "/products" },
{ name: "Manufacturing", id: "#features" }, { name: "About", id: "/about" },
{ name: "Capabilities", id: "#metrics" }, { name: "Manufacturing", id: "/#features" },
{ name: "Contact", id: "#contact" }, { name: "Contact", id: "/contact" },
]} ]}
brandName="Plásticos Kame" brandName="Plásticos Kame"
button={{ text: "Get Quote", href: "#contact" }} button={{ text: "Get Quote", href: "/contact" }}
/> />
</div> </div>
@@ -46,22 +46,9 @@ export default function LandingPage() {
<HeroOverlayTestimonial <HeroOverlayTestimonial
title="Precision Plastics: Decades of Excellence, Your Scale" title="Precision Plastics: Decades of Excellence, Your Scale"
description="Shop premium own-brand containers with instant volume pricing, or partner with us for custom injection and blow molding solutions. ISO 9001:2015 certified, 24/7/365 production capacity." description="Shop premium own-brand containers with instant volume pricing, or partner with us for custom injection and blow molding solutions. ISO 9001:2015 certified, 24/7/365 production capacity."
testimonials={[ testimonials={[]}
{ name: "Sarah Jenkins", handle: "@procurement_lead", testimonial: "Plásticos Kame consistently delivers on precision and scale. Their volume pricing model revolutionized our logistics.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-businessman-standing-front-table-writing-diary-with-pen_23-2148087135.jpg?_wi=1" }, buttons={[{ text: "Shop Our Brand", href: "/products" }, { text: "Learn More", href: "/about" }]}
{ name: "Mark Thornton", handle: "@supply_chain", testimonial: "Unrivaled expertise in custom tooling. We went from prototype to mass production in record time.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/professional-inspector-suit-reviewing-solar-panel-production-showcasing-leadership-renewable_482257-135429.jpg?_wi=1" },
{ name: "Elena Rodriguez", handle: "@product_design", testimonial: "The ISO certification and 24/7 capacity give us the reliability we need for our automotive components.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/male-worker-with-arms-crossed-standing-factory_107420-96042.jpg?_wi=1" },
{ 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" }]}
imageSrc="http://img.b2bpic.net/free-photo/pharmacy-industry-factory-man-worker-protective-clothing-sterile-working-conditions-operating-pharmaceutical-equipment_645730-446.jpg" 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" },
{ src: "http://img.b2bpic.net/free-photo/successful-agent_1098-14407.jpg", alt: "Successful agent" },
{ src: "http://img.b2bpic.net/free-photo/man-working-warehouse_329181-12824.jpg", alt: "Man working in warehouse" },
{ src: "http://img.b2bpic.net/free-photo/young-man-holding-writing-diary-office_23-2148187178.jpg", alt: "Young man holding writing on diary in office" },
{ src: "http://img.b2bpic.net/free-photo/confident-businessman_1098-16876.jpg", alt: "Confident businessman" },
]}
/> />
</div> </div>
@@ -86,14 +73,7 @@ export default function LandingPage() {
textboxLayout="split-actions" textboxLayout="split-actions"
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
useInvertedBackground={true} useInvertedBackground={true}
products={[ 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" },
{ 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" },
{ 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" },
{ 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" },
{ 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" },
]}
title="Own-Brand Solutions" title="Own-Brand Solutions"
description="Browse our premium line of high-durability plastic containers, closures, and industrial components with instant volume-based pricing." 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" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
testimonials={[ 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" },
]}
kpiItems={[ kpiItems={[
{ value: "98%", label: "Client Retention" }, { value: "98%", label: "Client Retention" },
{ value: "15M+", label: "Units Molded" }, { value: "15M+", label: "Units Molded" },
@@ -141,11 +115,7 @@ export default function LandingPage() {
<FaqSplitMedia <FaqSplitMedia
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
faqs={[ faqs={[]}
{ id: "f1", title: "Do you handle custom tooling development?", content: "Yes, our in-house engineering team manages the entire tooling lifecycle from design through production." },
{ id: "f2", title: "What are your minimum order volumes?", content: "We offer tiered pricing scaling from small batches to high-volume multi-million unit contracts." },
{ id: "f3", title: "How is production capacity managed?", content: "Our 40+ injection lines operate on a 24/7 schedule, ensuring rapid fulfillment for even the most demanding production requirements." },
]}
title="B2B Partnership FAQ" title="B2B Partnership FAQ"
description="Answers to commonly asked questions from industrial partners regarding scaling and capacity." description="Answers to commonly asked questions from industrial partners regarding scaling and capacity."
faqsAnimation="slide-up" faqsAnimation="slide-up"
@@ -160,32 +130,17 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
title="Latest Industry Insights" title="Latest Industry Insights"
description="Stay updated on manufacturing trends, materials science, and logistics innovation." description="Stay updated on manufacturing trends, materials science, and logistics innovation."
blogs={[ blogs={[]}
{ id: "b1", category: "Tech", title: "The Future of Sustainable Plastics", excerpt: "How new material science is enabling circular economies in large-scale plastic manufacturing.", imageSrc: "http://img.b2bpic.net/free-photo/mayonnaise-can-green-background_58702-2142.jpg", authorName: "Dr. Alan V.", authorAvatar: "http://img.b2bpic.net/free-photo/smiling-portrait-young-businessman-holding-digital-tablet-hand-his-colleague-working-background_23-2148087266.jpg", date: "Oct 12, 2024" },
{ id: "b2", category: "Scaling", title: "Optimizing Injection Molding", excerpt: "Lessons learned from scaling production lines for Fortune 500 automotive clients.", imageSrc: "http://img.b2bpic.net/free-photo/designer-working-3d-model_23-2149371864.jpg", authorName: "Elena M.", authorAvatar: "http://img.b2bpic.net/free-photo/mature-businessman-communicating-with-factory-worker-while-visiting-industrial-facility_637285-4804.jpg", date: "Oct 05, 2024" },
{ id: "b3", category: "Logistics", title: "Streamlining Global Supply", excerpt: "Managing multi-continent distribution with high-volume plastic container manufacturing.", imageSrc: "http://img.b2bpic.net/free-photo/african-american-developer-setting-up-gears-model-manufacturing-software-developing-engine-product-technical-industry-innovation-creating-turbine-design-with-industrial-cad-science_482257-50240.jpg", authorName: "David K.", authorAvatar: "http://img.b2bpic.net/free-photo/businesswoman-making-video-call-touchpad-while-working-office-coronavirus-pandemic_637285-9891.jpg", date: "Sep 28, 2024" },
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
tag="Inquire Today"
title="Partner with Plásticos Kame"
description="Ready to discuss your custom manufacturing requirements or scale your existing container procurement? Reach out to our industrial partnership team."
imageSrc="http://img.b2bpic.net/free-photo/fabric-texture_1409-2262.jpg"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterMedia <FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281305.jpg" imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281305.jpg?_wi=1"
logoText="Plásticos Kame" logoText="Plásticos Kame"
columns={[ 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: "Company", items: [{ label: "Inquiry", href: "/contact" }, { label: "Careers", href: "#" }, { label: "Support", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }, { label: "Certifications", href: "#" }] }, { title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }, { label: "Certifications", href: "#" }] },
]} ]}
/> />

75
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,75 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="largeSmallSizeMediumTitles"
background="noise"
cardStyle="inset"
primaryButtonStyle="flat"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Manufacturing", id: "/#features" },
{ name: "Contact", id: "/contact" },
]}
brandName="Plásticos Kame"
button={{ text: "Get Quote", href: "/contact" }}
/>
</div>
<div id="socialProof" data-section="socialProof">
<SocialProofOne
names={["GlobalPharma", "AutoCorp Solutions", "CosmoTech", "ConsumerGoods Group", "Logistics Pro", "TechFlow", "BioIndustries"]}
title="Trusted by Industry Leaders"
description="Our clients represent the cutting edge of global supply chain excellence."
useInvertedBackground={false}
textboxLayout="default"
className="py-16"
/>
</div>
<div id="products" data-section="products">
<ProductCardFour
gridVariant="uniform-all-items-equal"
animationType="slide-up"
useInvertedBackground={true}
textboxLayout="default"
title="Product Catalog"
description="Explore our premium line of high-durability plastic containers, closures, and industrial components."
products={[]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
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: "/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: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}