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

This commit is contained in:
2026-06-25 07:28:06 +00:00
parent df910222dc
commit cad23a0f7b

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="Support"
title="Frequently Asked Questions"
description="Find answers to the most common questions about Nutri Track."
items={[
{
question: "Is the app really free?",
answer: "Yes, our core tracking features are free for everyone.",
},
{
question: "Can I sync with other devices?",
answer: "Absolutely, Nutri Track syncs seamlessly across phone, tablet, and web.",
},
{
question: "How accurate is the food database?",
answer: "We utilize verified nutrition data from multiple reliable sources for accuracy.",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}