40 lines
1.5 KiB
TypeScript
40 lines
1.5 KiB
TypeScript
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
|
// file as the canonical source for the "about" section.
|
|
|
|
import React from 'react';
|
|
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
|
import { Award, Shield, Zap } from "lucide-react";
|
|
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
|
|
export default function AboutSection(): React.JSX.Element {
|
|
return (
|
|
<div id="about" data-section="about">
|
|
<SectionErrorBoundary name="about">
|
|
<AboutFeaturesSplit
|
|
tag="Our Story"
|
|
title="A Legacy of Taste"
|
|
description="Tavaduri is born from a deep respect for Georgian traditions. We combine time-honored techniques with sustainable sourcing to deliver quality that defines excellence."
|
|
items={[
|
|
{
|
|
icon: Award,
|
|
title: "Artisanal Quality",
|
|
description: "Hand-selected ingredients prepared with traditional care.",
|
|
},
|
|
{
|
|
icon: Shield,
|
|
title: "Pure Heritage",
|
|
description: "100% authentic recipes passed through generations.",
|
|
},
|
|
{
|
|
icon: Zap,
|
|
title: "Fresh Commitment",
|
|
description: "Sustainable practices that respect both land and community.",
|
|
},
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/pumpkin-with-bow-ancient-kettle-marble_114579-40260.jpg"
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
);
|
|
}
|