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" }} /> -