Files
dc0b9402-49e6-4edb-9e45-448…/src/app/about/page.tsx
2026-06-10 15:14:48 +00:00

212 lines
7.4 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import { HelpCircle, Users } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="smallMedium"
sizing="mediumLargeSizeMediumTitles"
background="grid"
cardStyle="inset"
primaryButtonStyle="shadow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "About Us",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="NextEdgeeExport"
button={{
text: "IT Services",
href: "https://nextedgeeit.com",
}}
/>
</div>
<div id="team" data-section="team">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
groups={[
{
id: "leadership",
groupTitle: "Leadership & Core Team",
members: [
{
id: "tm1",
title: "Rajesh Kumar",
subtitle: "Global Export Director",
detail: "Over 20 years experience in international trade and polymer industries, leading our global expansion efforts.",
imageSrc: "http://img.b2bpic.net/free-photo/pensive-mature-businessman-standing-near-forklift-warehouse-speaking-cell-phone-shelves-with-goods-background-business-logistics-concept_74855-14257.jpg",
imageAlt: "Rajesh Kumar, Global Export Director",
},
{
id: "tm2",
title: "Dr. Anya Sharma",
subtitle: "Head of R&D and Technical Services",
detail: "PhD in Polymer Chemistry, driving innovation in sustainable masterbatch formulations.",
imageSrc: "http://img.b2bpic.net/free-photo/online-marketing_53876-176744.jpg",
imageAlt: "Dr. Anya Sharma, Head of R&D",
},
{
id: "tm3",
title: "Chen Wei",
subtitle: "Logistics & Supply Chain Manager",
detail: "Ensuring seamless and efficient delivery of products across our global network.",
imageSrc: "http://img.b2bpic.net/free-photo/man-warehouse-working-laptop_23-2148886879.jpg",
imageAlt: "Chen Wei, Logistics Manager",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/portrait-hopeful-optimistic-woman-clenches-fists-smiles-broadly-celebrates-success-triumph-wears-fashionable-grey-jacket-stands-indoor_273609-43201.jpg",
imageAlt: "export manager portrait professional",
},
]}
title="Meet the Minds Behind NextEdgeeExport"
description="Our dedicated team of experts is passionate about delivering innovative plastic solutions and unparalleled customer service."
tag="Our Team"
tagIcon={Users}
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{
id: "q1",
title: "What types of plastic masterbatches do you offer?",
content: "We offer a wide range of masterbatches including color masterbatches (for various polymers), additive masterbatches (UV stabilizers, flame retardants, anti-static), and specialty masterbatches (compostable fillers, PLA masterbatches).",
},
{
id: "q2",
title: "Do you provide technical support for product application?",
content: "Yes, our experienced technical team provides comprehensive support, including product selection, formulation guidance, and troubleshooting to ensure optimal performance in your applications.",
},
{
id: "q3",
title: "What are your minimum order quantities for export?",
content: "Minimum order quantities vary by product type and destination. Please contact our sales team with your specific requirements for a detailed quote.",
},
{
id: "q4",
title: "Are your products compliant with international standards?",
content: "Absolutely. All our products adhere to strict international quality and environmental standards, including ISO certifications. Specific certifications can be provided upon request.",
},
{
id: "q5",
title: "How do you handle international shipping and logistics?",
content: "We have robust global logistics partners, ensuring efficient and reliable delivery to Asia-Pacific and Europe. We manage all export documentation and customs procedures for a seamless experience.",
},
]}
title="Frequently Asked Questions"
description="Find quick answers to common inquiries about our products, services, and export process."
tag="Support"
tagIcon={HelpCircle}
faqsAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/worker-operates-machine-enterprise-clean-room-with-stainless-steel-hardware_645730-557.jpg?_wi=3"
imageAlt="Modern factory interior"
logoText="NextEdgeeExport"
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Our Products",
href: "/products",
},
{
label: "Contact",
href: "/contact",
},
{
label: "IT Services",
href: "https://nextedgeeit.com",
},
],
},
{
title: "Products",
items: [
{
label: "Color Masterbatch",
href: "/products#color-masterbatch",
},
{
label: "PLA Masterbatch",
href: "/products#pla-masterbatch",
},
{
label: "Additives",
href: "/products#additives",
},
{
label: "Specialty Fillers",
href: "/products#specialty-fillers",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
{
label: "Cookie Policy",
href: "#",
},
],
},
]}
copyrightText="© 2024 NextEdgeeExport. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}