Add src/app/about/page.tsx

This commit is contained in:
2026-05-23 01:33:53 +00:00
parent 5c93241980
commit 72302c2590

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>
);
}