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