Merge version_1_1783032065182 into main #2

Merged
bender merged 1 commits from version_1_1783032065182 into main 2026-07-02 22:43:22 +00:00

View File

@@ -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 (
<>
<div id="product" data-section="product">
<SectionErrorBoundary name="product">
<div id="product" data-section="product">
<SectionErrorBoundary name="product">
<FeaturesImageBento
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"
/>
</SectionErrorBoundary>
</div>
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"
/>
</SectionErrorBoundary>
</div>
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutFeaturesSplit
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"
/>
</SectionErrorBoundary>
</div>
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"
/>
</SectionErrorBoundary>
</div>
</>
);
}