diff --git a/src/pages/CollectionsPage.tsx b/src/pages/CollectionsPage.tsx
index 46c06a8..dd48064 100644
--- a/src/pages/CollectionsPage.tsx
+++ b/src/pages/CollectionsPage.tsx
@@ -1,48 +1,45 @@
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
-import { Droplet, Layers } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function CollectionsPage() {
return (
<>
-
-
+
+
-
-
+ tag="Collections"
+ title="The Archive"
+ description="A deep dive into our seasonal drops."
+ items={[
+ { title: "Midnight Series", description: "Inspired by urban night skies.", imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669153.jpg" },
+ { title: "Earth & Skin", description: "Raw, botanical, grounded elements.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337694.jpg" },
+ { title: "Seasonal One", description: "Crisp notes for spring.", imageSrc: "http://img.b2bpic.net/free-photo/everyday-bath-utensils-dark-marble-background_58702-17689.jpg" },
+ { title: "Seasonal Two", description: "Deep warmth for autumn.", imageSrc: "http://img.b2bpic.net/free-photo/natural-argan-oil-composition_23-2149016630.jpg" },
+ { title: "Archive Rare", description: "Limited edition classics.", imageSrc: "http://img.b2bpic.net/free-photo/man-s-accessories-wooden-surface_8353-10515.jpg" },
+ { title: "Botanical Mist", description: "Light and airy scent.", imageSrc: "http://img.b2bpic.net/free-photo/monochrome-beauty-product-skincare_23-2151307236.jpg" },
+ { title: "Midnight Musk", description: "Deep and mysterious notes.", imageSrc: "http://img.b2bpic.net/free-photo/set-feathers-can_23-2148073845.jpg" }
+ ]}
+ textAnimation="fade-blur"
+ />
+
+
-
-
+
+ tag="Process"
+ title="The Art of Formulation"
+ description="How we turn emotion into physical essence."
+ items={[
+ { icon: "Droplet", title: "Distillation", description: "Small-batch artisan extraction." },
+ { icon: "Layers", title: "Aging", description: "Matured in darkness for perfect balance." },
+ ]}
+ imageSrc="http://img.b2bpic.net/free-photo/luxurious-lifestyle-concept-table_23-2148229220.jpg"
+ textAnimation="fade-blur"
+ />
+
+
>
);
}