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