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

This commit is contained in:
2026-06-20 19:49:44 +00:00
parent c169267aa6
commit f5c1da8cb8

View File

@@ -1,34 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "faq" section.
import React from 'react';
import FaqSimple from '@/components/sections/faq/FaqSimple';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FaqSection(): React.JSX.Element {
return (
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqSimple
tag="Common Questions"
title="Everything You Need to Know"
description="Answers to frequently asked questions about Tavaduri products and services."
items={[
{
question: "Are your ingredients 100% natural?",
answer: "Yes, we exclusively source natural, organic ingredients free from additives.",
},
{
question: "Where is Tavaduri based?",
answer: "We are deeply rooted in Georgian traditions, with our headquarters centered in Tbilisi.",
},
{
question: "How do you ensure authenticity?",
answer: "We work closely with local artisan producers to maintain time-honored recipes.",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}