Switch to version 1: remove src/pages/HomePage/sections/About.tsx

This commit is contained in:
2026-06-20 19:49:44 +00:00
parent 90f63969b9
commit df1cac3430

View File

@@ -1,39 +0,0 @@
// 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>
);
}