Files
da391532-bf62-4321-85ae-cd3…/src/app/process/page.tsx

209 lines
5.8 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import { CheckCircle, Palette, Scissors } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="medium"
sizing="largeSmallSizeMediumTitles"
background="grid"
cardStyle="subtle-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Products",
id: "/products",
},
{
name: "Process",
id: "/process",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="FR.COM & TK FARHINA"
/>
</div>
<div id="manufacturing" data-section="manufacturing">
<FeatureCardTen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
features={[
{
title: "Design",
description: "Creative design and pattern development.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-lot-coils-with-threads-sewing-workshop_613910-19015.jpg?_wi=1",
},
items: [
{
icon: Palette,
text: "Pattern Making",
},
],
reverse: false,
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-looking-male-tailor-taking-fabric-from-shelf-workshop_23-2148180378.jpg?_wi=11",
imageAlt: "modern garment factory interior",
},
{
title: "Cutting",
description: "Precision cutting for all fabric types.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-lot-coils-with-threads-sewing-workshop_613910-19015.jpg?_wi=2",
},
items: [
{
icon: Scissors,
text: "Automated precision",
},
],
reverse: true,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-lot-coils-with-threads-sewing-workshop_613910-19015.jpg?_wi=3",
imageAlt: "industrial garment factory interior",
},
{
title: "Quality Check",
description: "Rigorous checks at every step.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-lot-coils-with-threads-sewing-workshop_613910-19015.jpg?_wi=4",
},
items: [
{
icon: CheckCircle,
text: "Zero defect guarantee",
},
],
reverse: false,
imageSrc: "http://img.b2bpic.net/free-photo/mother-teenage-boy-wearing-denim-outfits-together_23-2150151115.jpg?_wi=4",
imageAlt: "kids clothing on hanger",
},
]}
title="Manufacturing Excellence"
description="Our end-to-end production workflow."
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitText
useInvertedBackground={false}
sideTitle="Manufacturing Workflow"
sideDescription="Understand our end-to-end production cycle."
faqs={[
{
id: "f1",
title: "Initial Consultation",
content: "We begin by understanding your needs.",
},
{
id: "f2",
title: "Design & Prototyping",
content: "Creating patterns based on requirements.",
},
{
id: "f3",
title: "Fabric Sourcing",
content: "Only high quality textiles used.",
},
{
id: "f4",
title: "Bulk Production",
content: "Precision machinery in operation.",
},
{
id: "f5",
title: "Final QA & Export",
content: "Thorough checks before shipping.",
},
]}
faqsAnimation="blur-reveal"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Quick Links",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Products",
href: "/products",
},
{
label: "Contact Us",
href: "/contact",
},
],
},
{
title: "Products",
items: [
{
label: "Boys Wear",
href: "/products",
},
{
label: "Girls Wear",
href: "/products",
},
{
label: "Kids Wear",
href: "/products",
},
],
},
{
title: "Contact",
items: [
{
label: "Phone: 9836991204",
href: "tel:919836991204",
},
{
label: "Email: ramizzuddin795@gmail.com",
href: "mailto:ramizzuddin795@gmail.com",
},
],
},
]}
bottomLeftText="© 2024 FR.COM & TK FARHINA"
bottomRightText="All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}