From 1a359fe6fb50235e592caa4cbf02b1d1a634e4f0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 31 May 2026 22:40:16 +0000 Subject: [PATCH] Add src/app/collections/page.tsx --- src/app/collections/page.tsx | 98 ++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 src/app/collections/page.tsx diff --git a/src/app/collections/page.tsx b/src/app/collections/page.tsx new file mode 100644 index 0000000..ff08310 --- /dev/null +++ b/src/app/collections/page.tsx @@ -0,0 +1,98 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +const consistentNavItems = [ + { name: "Shop", id: "#shop" }, + { name: "Best Sellers", id: "#best-sellers" }, + { name: "Collections", id: "/collections" }, + { name: "Products", id: "#products" }, + { name: "Concerns", id: "#concerns" }, + { name: "About", id: "#about" }, + { name: "Contact", id: "#contact" }, +]; + +export default function CollectionsIndexPage() { + return ( + + + + +
+

Our Collections

+

+ Explore our exquisite range of skincare collections, each crafted with unique formulations to address your specific beauty needs. +

+
+ +

Aqua Collection

+

Deep Hydration

+
+ +

EmberCell Collection

+

Rejuvenating & Anti-Aging

+
+ +

PrismaStem Collection

+

Radiant Brightening

+
+
+
+ + +
+
+ ); +} \ No newline at end of file