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

This commit is contained in:
2026-06-20 19:49:46 +00:00
parent 327c2d69e8
commit 6a1498a909

View File

@@ -1,49 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "products" section.
import React from 'react';
import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ProductsSection(): React.JSX.Element {
return (
<div id="products" data-section="products">
<SectionErrorBoundary name="products">
<FeaturesDetailedCards
tag="Our Selection"
title="Premium Artisanal Products"
description="Explore our curated range of products, crafted to bring the essence of Georgian culture to your table."
items={[
{
title: "Traditional Flavors",
description: "Authentic spices and ingredients sourced directly from the heart of Georgia.",
tags: [
"Artisanal",
"Heritage",
],
imageSrc: "http://img.b2bpic.net/free-photo/top-view-rural-vegetables-healthy-nutrition-there-are-ingredients-cooking-such-as-champignons-peppers-tomatoes-onion-lettuce-leaves-cucumber-zucchini-black-background-with-cop_639032-1333.jpg",
},
{
title: "Crafted Perfection",
description: "Precision in every batch, ensuring consistent quality for our discerning customers.",
tags: [
"Premium",
"Handmade",
],
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-beer-factory_23-2150573904.jpg",
},
{
title: "Exquisite Packaging",
description: "Sustainable and beautiful designs that honor the product within.",
tags: [
"Sustainable",
"Premium",
],
imageSrc: "http://img.b2bpic.net/free-photo/copper-bowl-with-steam_23-2151934602.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}