From cb4fd32f7227566d5c574cc40e613555b0bbf01d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 07:14:00 +0000 Subject: [PATCH] Update src/app/process/page.tsx --- src/app/process/page.tsx | 132 +++++++++++++++------------------------ 1 file changed, 49 insertions(+), 83 deletions(-) diff --git a/src/app/process/page.tsx b/src/app/process/page.tsx index 592271c..464fc65 100644 --- a/src/app/process/page.tsx +++ b/src/app/process/page.tsx @@ -1,15 +1,14 @@ "use client"; -import Link from "next/link"; -import { Sparkles } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; -import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { MessageSquare } from 'lucide-react'; -const ProcessPage = () => { +export default function ProcessPage() { const navItems = [ { name: "Home", id: "/" }, { name: "About", id: "/about" }, @@ -21,8 +20,7 @@ const ProcessPage = () => { const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Manufacturing Process", href: "/process" }, { label: "Gallery", href: "/gallery" }, @@ -30,8 +28,7 @@ const ProcessPage = () => { ], }, { - title: "Products", - items: [ + title: "Products", items: [ { label: "Men's Apparel", href: "/products#mens" }, { label: "Women's Apparel", href: "/products#womens" }, { label: "Kids Wear", href: "/products#kids" }, @@ -39,8 +36,7 @@ const ProcessPage = () => { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone", href: "tel:+919876543210" }, { label: "Email", href: "mailto:sales@sonuexim.com" }, { label: "Office Address", href: "https://maps.google.com/?q=Sonu+Exim+Noida" }, @@ -48,8 +44,7 @@ const ProcessPage = () => { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Compliance", href: "#" }, @@ -64,7 +59,7 @@ const ProcessPage = () => { borderRadius="soft" contentWidth="compact" sizing="medium" - background="noiseDiagonalGradient" + background="circleGradient" cardStyle="inset" primaryButtonStyle="radial-glow" secondaryButtonStyle="glass" @@ -75,99 +70,72 @@ const ProcessPage = () => { brandName="Sonu Exim" navItems={navItems} button={{ - text: "Call Now", - href: "tel:+919876543210", + text: "Call Now", href: "tel:+919876543210" }} /> -
+
-
+
-
- +
@@ -180,6 +148,4 @@ const ProcessPage = () => {
); -}; - -export default ProcessPage; \ No newline at end of file +} \ No newline at end of file