From efd7f4de84ff8601e82002ca369f86b8e9905dca Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 08:08:44 +0000 Subject: [PATCH] Add src/app/unisex-collection/page.tsx --- src/app/unisex-collection/page.tsx | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/app/unisex-collection/page.tsx diff --git a/src/app/unisex-collection/page.tsx b/src/app/unisex-collection/page.tsx new file mode 100644 index 0000000..23bb0cb --- /dev/null +++ b/src/app/unisex-collection/page.tsx @@ -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 ( + + +
+ +
+ +
+ ); +} \ No newline at end of file