From 757e6d24a78e14d3bcd7d89de72c3c7e1d95072a Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Sun, 26 Apr 2026 23:38:43 +0300 Subject: [PATCH] Bob AI: [SECTION ADD OPERATION] You must create a COMPLETELY NEW sec --- src/App.tsx | 4 +++ src/components/sections/faq/FaqSection.tsx | 35 ++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 src/components/sections/faq/FaqSection.tsx diff --git a/src/App.tsx b/src/App.tsx index 64e20a6..d1b78d1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -7,6 +7,7 @@ import ContactPage from "@/pages/ContactPage"; import TeamTestimonialsPage from "@/pages/TeamTestimonialsPage"; import PricingPage from "@/pages/PricingPage"; import PricingSimpleCards from "@/components/sections/pricing/PricingSimpleCards"; +import { FaqSection } from "@/components/sections/faq/FaqSection"; export default function App() { return ( @@ -52,6 +53,9 @@ export default function App() { ]} /> +
+ +
); } \ No newline at end of file diff --git a/src/components/sections/faq/FaqSection.tsx b/src/components/sections/faq/FaqSection.tsx new file mode 100644 index 0000000..22808a8 --- /dev/null +++ b/src/components/sections/faq/FaqSection.tsx @@ -0,0 +1,35 @@ +import FaqSimple from "@/components/sections/faq/FaqSimple"; + +const FaqSection = () => { + return ( + + ); +}; + +export default FaqSection; \ No newline at end of file -- 2.49.1