Add src/app/womens-jackets/page.tsx
This commit is contained in:
75
src/app/womens-jackets/page.tsx
Normal file
75
src/app/womens-jackets/page.tsx
Normal file
@@ -0,0 +1,75 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
|
||||
export default function WomensJacketsPage() {
|
||||
const commonThemeProviderProps = {
|
||||
defaultButtonVariant: "text-shift", defaultTextAnimation: "background-highlight", borderRadius: "soft", contentWidth: "smallMedium", sizing: "mediumLargeSizeMediumTitles", background: "aurora", cardStyle: "soft-shadow", primaryButtonStyle: "double-inset", secondaryButtonStyle: "solid", headingFontWeight: "normal"} as const;
|
||||
|
||||
const navItems = [
|
||||
{ name: "Men's Jackets", id: "/mens-jackets" },
|
||||
{ name: "Women's Jackets", id: "/womens-jackets" },
|
||||
{ name: "Women's Coats", id: "/womens-coats" },
|
||||
{ name: "Why Choose Us", id: "/#why-choose-us" },
|
||||
];
|
||||
|
||||
const navbarProps = {
|
||||
navItems: navItems,
|
||||
button: {
|
||||
text: "Contact Us", href: "https://wa.me/917973765468?text=Hi,%0AI%20want%20to%20know%20more%20about%20your%20products%20and%20services."},
|
||||
logoSrc: "http://img.b2bpic.net/free-photo/woman-jacket_1303-3803.jpg", logoAlt: "DRIXUN Luxury Fashion Logo", brandName: "DRIXUN"};
|
||||
|
||||
const footerProps = {
|
||||
logoSrc: "http://img.b2bpic.net/free-photo/woman-jacket_1303-3803.jpg", logoAlt: "DRIXUN Luxury Fashion Logo", logoText: "DRIXUN", leftLink: { text: "Home", href: "/" },
|
||||
rightLink: { text: "Privacy Policy", href: "#" },
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider {...commonThemeProviderProps}>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered {...navbarProps} />
|
||||
</div>
|
||||
|
||||
<div id="womens-jackets" data-section="womens-jackets">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "wj1", name: "Elegant Cropped Leather Jacket", price: "Enquire Now", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-biker-girl-wearing-black-leather-jacket-holding-helmet-while-leaning-her-superbike-outside-building_613910-5996.jpg", imageAlt: "Elegant women's cropped leather jacket", onProductClick: () => { window.open('https://wa.me/917973765468?text=Hi,%0AI%20am%20interested%20in%20this%20design.%0APlease%20share%20complete%20specifications%20and%20pricing.', '_blank'); },
|
||||
},
|
||||
{
|
||||
id: "wj2", name: "Tailored White Blazer", price: "Enquire Now", imageSrc: "http://img.b2bpic.net/free-photo/attractive-business-woman-blue-jacket-by-office-center_1303-28980.jpg", imageAlt: "Tailored women's white blazer", onProductClick: () => { window.open('https://wa.me/917973765468?text=Hi,%0AI%20am%20interested%20in%20this%20design.%0APlease%20share%20complete%20specifications%20and%20pricing.', '_blank'); },
|
||||
},
|
||||
{
|
||||
id: "wj3", name: "Satin Bomber Jacket", price: "Enquire Now", imageSrc: "http://img.b2bpic.net/free-photo/woman-by-building-new-year-mood-lady-black-jacket_1157-40731.jpg", imageAlt: "Women's satin bomber jacket", onProductClick: () => { window.open('https://wa.me/917973765468?text=Hi,%0AI%20am%20interested%20in%20this%20design.%0APlease%20share%20complete%20specifications%20and%20pricing.', '_blank'); },
|
||||
},
|
||||
{
|
||||
id: "wj4", name: "Embroidered Denim Jacket", price: "Enquire Now", imageSrc: "http://img.b2bpic.net/free-photo/fashion-stylish-beautiful-young-brunette-woman-model-summer-hipster-colorful-casual-clothes-posing-street_158538-12303.jpg", imageAlt: "Embroidered women's denim jacket", onProductClick: () => { window.open('https://wa.me/917973765468?text=Hi,%0AI%20am%20interested%20in%20this%20design.%0APlease%20share%20complete%20specifications%20and%20pricing.', '_blank'); },
|
||||
},
|
||||
{
|
||||
id: "wj5", name: "Metallic Puffer Jacket", price: "Enquire Now", imageSrc: "http://img.b2bpic.net/free-photo/stylish-woman-posing-winter-autumn-fashion-trend-blue-puffer-coat-hat-beret-old-beautiful-street-stairs_285396-6917.jpg", imageAlt: "Metallic women's puffer jacket", onProductClick: () => { window.open('https://wa.me/917973765468?text=Hi,%0AI%20am%20interested%20in%20this%20design.%0APlease%20share%20complete%20specifications%20and%20pricing.', '_blank'); },
|
||||
},
|
||||
{
|
||||
id: "wj6", name: "Classic Tweed Jacket", price: "Enquire Now", imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-beige-coat-walking-street-christmas_1303-26103.jpg", imageAlt: "Classic women's tweed jacket", onProductClick: () => { window.open('https://wa.me/917973765468?text=Hi,%0AI%20am%20interested%20in%20this%20design.%0APlease%20share%20complete%20specifications%20and%20pricing.', '_blank'); },
|
||||
},
|
||||
]}
|
||||
title="Women's Jackets Collection"
|
||||
description="Embrace elegance and comfort with our chic designs. Our women's jackets blend contemporary trends with timeless sophistication, perfect for every occasion."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal {...footerProps} />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user