44 lines
1.7 KiB
TypeScript
44 lines
1.7 KiB
TypeScript
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
|
// file as the canonical source for the "features" section.
|
|
|
|
import React from 'react';
|
|
import FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetailedSteps';
|
|
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
|
|
export default function FeaturesSection(): React.JSX.Element {
|
|
return (
|
|
<div id="features" data-section="features">
|
|
<SectionErrorBoundary name="features">
|
|
<FeaturesDetailedSteps
|
|
tag="Quality"
|
|
title="Excellence in Every Detail"
|
|
description="We ensure every item meets our high standards for craftsmanship."
|
|
steps={[
|
|
{
|
|
tag: "Craft",
|
|
title: "Artisanal",
|
|
subtitle: "Quality Focus",
|
|
description: "Hand-picked materials and finishes.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/sewing-buttons_23-2148145926.jpg",
|
|
},
|
|
{
|
|
tag: "Trend",
|
|
title: "Timeless",
|
|
subtitle: "Design Ethos",
|
|
description: "Classic looks designed to last.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/stacked-aesthetic-objects-still-life_23-2150230644.jpg",
|
|
},
|
|
{
|
|
tag: "Style",
|
|
title: "Exclusive",
|
|
subtitle: "Curated Pieces",
|
|
description: "Items tailored for uniqueness.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/top-view-traveler-women-s-outfit-accessories_1357-91.jpg",
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
);
|
|
}
|