Merge version_1_1782191980243 into main #1

Merged
bender merged 2 commits from version_1_1782191980243 into main 2026-06-23 05:21:47 +00:00

View File

@@ -6,59 +6,43 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function SustainabilityPage() {
return (
<>
<div id="sustainability-editorial" data-section="sustainability-editorial">
<SectionErrorBoundary name="sustainability-editorial">
<div id="sustainability-editorial" data-section="sustainability-editorial">
<SectionErrorBoundary name="sustainability-editorial">
<AboutFeaturesSplit
tag="Environment"
title="Luxury should leave a lasting impression. Not a lasting footprint."
description="We are stewards of the land, utilizing only the finest renewable fibers."
items={[
{
icon: CheckCircle,
title: "Zero Waste",
description: "Circular lifecycle.",
},
{
icon: Zap,
title: "Low Impact",
description: "Solar-powered looms.",
},
{
icon: Star,
title: "Natural Origin",
description: "Pure fibers only.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-natural-woven-fabric-texture_84443-73742.jpg"
/>
</SectionErrorBoundary>
</div>
tag="Environment"
title="Luxury should leave a lasting impression. Not a lasting footprint."
description="We are stewards of the land, utilizing only the finest renewable fibers."
items={[
{
icon: "CheckCircle", title: "Zero Waste", description: "Circular lifecycle."},
{
icon: "Zap", title: "Low Impact", description: "Solar-powered looms."},
{
icon: "Star", title: "Natural Origin", description: "Pure fibers only."},
]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-natural-woven-fabric-texture_84443-73742.jpg"
/>
</SectionErrorBoundary>
</div>
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<FeaturesBento
tag="Values"
title="Our Circular Path"
description="A roadmap to zero-impact manufacturing."
features={[
{
title: "Water Neutrality",
description: "Closed-loop system usage.",
bentoComponent: "info-card-marquee",
infoCards: [
{
icon: Droplet,
label: "Water Savings",
value: "90%",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/elegant-display-black-ceramic-vases_23-2151984822.jpg",
imageAlt: "architectural stone wall texture luxury interior",
},
]}
/>
</SectionErrorBoundary>
</div>
tag="Values"
title="Our Circular Path"
description="A roadmap to zero-impact manufacturing."
features={[
{
title: "Water Neutrality", description: "Closed-loop system usage.", bentoComponent: "info-card-marquee", infoCards: [
{
icon: Droplet,
label: "Water Savings", value: "90%"},
],
imageSrc: "http://img.b2bpic.net/free-photo/elegant-display-black-ceramic-vases_23-2151984822.jpg", imageAlt: "architectural stone wall texture luxury interior"},
]}
/>
</SectionErrorBoundary>
</div>
</>
);
}