From 479d8994441d443bd2a2e2521f4c39b2538dca32 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 09:05:49 +0000 Subject: [PATCH 1/8] Update src/app/about/page.tsx --- src/app/about/page.tsx | 137 +++++++++++++++++++++-------------------- 1 file changed, 70 insertions(+), 67 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d1cf1c1..c656a5d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,13 +2,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; -import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import Link from "next/link"; -import { Phone } from "lucide-react"; +import { Award, Target, Zap } from "lucide-react"; export default function AboutPage() { return ( @@ -18,7 +18,7 @@ export default function AboutPage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="mediumSizeLargeTitles" - background="aurora" + background="circleGradient" cardStyle="solid" primaryButtonStyle="shadow" secondaryButtonStyle="radial-glow" @@ -27,90 +27,73 @@ export default function AboutPage() { -
+
+ +
+ +
-
- +
-
+
+
+ +
+ ); -} \ No newline at end of file +} From 8cd5febba0b547f6f7d653d3d2d90d40e8e3c5b0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 09:05:49 +0000 Subject: [PATCH 2/8] Update src/app/bulk-orders/page.tsx --- src/app/bulk-orders/page.tsx | 129 +++++++++++------------------------ 1 file changed, 39 insertions(+), 90 deletions(-) diff --git a/src/app/bulk-orders/page.tsx b/src/app/bulk-orders/page.tsx index e8c8447..f87676c 100644 --- a/src/app/bulk-orders/page.tsx +++ b/src/app/bulk-orders/page.tsx @@ -2,13 +2,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import Link from "next/link"; -import { Phone } from "lucide-react"; +import { Package, Phone } from "lucide-react"; export default function BulkOrdersPage() { return ( @@ -18,7 +16,7 @@ export default function BulkOrdersPage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="mediumSizeLargeTitles" - background="aurora" + background="circleGradient" cardStyle="solid" primaryButtonStyle="shadow" secondaryButtonStyle="radial-glow" @@ -27,67 +25,42 @@ export default function BulkOrdersPage() { -
- +
-
+
-
- -
- -
+
); -} \ No newline at end of file +} From 80f4138becb26c1b39ccf31b7fb2e011da4eaa42 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 09:05:49 +0000 Subject: [PATCH 3/8] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 98 +++++++++++++++++----------------------- 1 file changed, 41 insertions(+), 57 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 1f1a808..ccf7317 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,12 +2,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import ContactFaq from "@/components/sections/contact/ContactFaq"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; +import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import Link from "next/link"; -import { Phone } from "lucide-react"; +import { Phone, Mail, MapPin } from "lucide-react"; export default function ContactPage() { return ( @@ -17,7 +16,7 @@ export default function ContactPage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="mediumSizeLargeTitles" - background="aurora" + background="circleGradient" cardStyle="solid" primaryButtonStyle="shadow" secondaryButtonStyle="radial-glow" @@ -26,90 +25,75 @@ export default function ContactPage() { +
+ +
+
-
+
-
- -
- ); -} \ No newline at end of file +} From 0843d14aa89fd54ab9db01655463b5617409325e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 09:05:50 +0000 Subject: [PATCH 4/8] Update src/app/layout.tsx --- src/app/layout.tsx | 74 ++++++++++------------------------------------ 1 file changed, 16 insertions(+), 58 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282f4a7..37d5730 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,73 +1,32 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Style Zone - Premium Jackets & Bulk Fashion Manufacturing Pakistan", - description: "Premium fashion manufacturer in Lahore, Pakistan. Shop high-quality jackets, custom branding, and bulk manufacturing services. 5.0★ rating with 17+ reviews.", - keywords: "jackets Pakistan, winter jackets Lahore, bulk jacket manufacturer, custom jackets, wholesale fashion, leather jackets, bomber jackets, fashion production", - metadataBase: new URL("https://stylezone.pk"), - alternates: { - canonical: "https://stylezone.pk", - }, - openGraph: { - title: "Style Zone - Premium Jackets & Bulk Manufacturing", - description: "High-quality jackets designed for durability, comfort, and modern fashion. Bulk orders welcome.", - type: "website", - siteName: "Style Zone", - images: [ - { - url: "http://img.b2bpic.net/free-photo/young-woman-model-leather-jacket-outside-street_1303-20489.jpg", - alt: "Style Zone premium jackets collection", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Style Zone - Premium Fashion Jackets", - description: "Premium jackets and bulk manufacturing from Pakistan's leading fashion manufacturer", - images: ["http://img.b2bpic.net/free-photo/young-woman-model-leather-jacket-outside-street_1303-20489.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: "Style Zone - Premium Fashion Jackets & Bulk Manufacturing", description: "Premium quality jackets and bulk fashion production. Pakistan's leading manufacturer specializing in high-quality jackets with custom branding, wholesale pricing, and fast delivery.", keywords: "jackets, fashion manufacturing, bulk orders, custom branding, fashion wholesale, Pakistani manufacturer, premium jackets, clothing production", openGraph: { + title: "Style Zone - Premium Fashion Jackets", description: "High-quality jackets designed for durability and modern fashion. Bulk manufacturing and wholesale available.", url: "https://stylezone.com", type: "website"}, }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + + + + + + + {children} +