Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 58afc8cb25 | |||
| 7b638a973d | |||
| e144bde58b | |||
| 08c9306c53 | |||
| 5d150210a2 | |||
| 0a14365fd6 |
@@ -32,7 +32,7 @@ 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: "Manufacturing", id: "#features" },
|
||||||
{ name: "Capabilities", id: "#metrics" },
|
{ name: "Capabilities", id: "#metrics" },
|
||||||
{ name: "Contact", id: "#contact" },
|
{ 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: "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" },
|
{ 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"
|
imageSrc="http://img.b2bpic.net/free-photo/pharmacy-industry-factory-man-worker-protective-clothing-sterile-working-conditions-operating-pharmaceutical-equipment_645730-446.jpg"
|
||||||
avatars={[
|
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/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"
|
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281305.jpg"
|
||||||
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: "#" }, { 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: "#" }] },
|
||||||
]}
|
]}
|
||||||
|
|||||||
80
src/app/products/page.tsx
Normal file
80
src/app/products/page.tsx
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
"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: "Manufacturing", id: "/" },
|
||||||
|
{ name: "Capabilities", id: "/" },
|
||||||
|
{ 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={[
|
||||||
|
{ id: "p1", name: "Pharmaceutical Grade Bottle", price: "$0.45", variant: "Clear PET", imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-children-jars-arrangement_23-2149512844.jpg" },
|
||||||
|
{ id: "p2", name: "Cosmetic Cream Container", price: "$0.62", variant: "HDPE", imageSrc: "http://img.b2bpic.net/free-photo/kegs-beer-regular-rows_1398-2536.jpg" },
|
||||||
|
{ id: "p3", name: "Industrial Storage Bin", price: "$12.50", variant: "High Density", imageSrc: "http://img.b2bpic.net/free-photo/top-view-glasses-abstract-table_23-2149974241.jpg" },
|
||||||
|
{ id: "p4", name: "Security Closure Cap", price: "$0.15", variant: "Tamper-proof", imageSrc: "http://img.b2bpic.net/free-photo/plastic-bottles-blue-background-high-angle_23-2149449759.jpg" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterMedia
|
||||||
|
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: "/" }] },
|
||||||
|
{ 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user