Add src/app/unisex-collection/page.tsx
This commit is contained in:
36
src/app/unisex-collection/page.tsx
Normal file
36
src/app/unisex-collection/page.tsx
Normal file
@@ -0,0 +1,36 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function UnisexCollectionPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Luxury Dental Care"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Men's Collection", id: "mens-collection" },
|
||||
{ name: "Women's Collection", id: "womens-collection" },
|
||||
{ name: "Unisex Collection", id: "unisex-collection" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
/>
|
||||
<div id="collection" data-section="collection">
|
||||
<ProductCardTwo
|
||||
title="Unisex Fragrance Collection"
|
||||
description="Universal scents designed for everyone."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
products={[
|
||||
{ id: "u1", brand: "Modern", name: "Urban Spirit", price: "$110", rating: 4, reviewCount: "45", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare/image3.avif" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<FooterBase logoText="Luxury Dental Care" columns={[]} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user