Add src/app/unisex-collection/page.tsx

This commit is contained in:
2026-04-24 08:08:44 +00:00
parent 78645be09b
commit efd7f4de84

View 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>
);
}