diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index f581e8f..8173aa2 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -13,7 +13,8 @@ import PricingSection from './HomePage/sections/Pricing';
import PartnersSection from './HomePage/sections/Partners';
import ContactSection from './HomePage/sections/Contact';
-export default function HomePage(): React.JSX.Element {
+
+import FaqSection from './HomePage/sections/Faq';export default function HomePage(): React.JSX.Element {
return (
<>
@@ -24,6 +25,7 @@ export default function HomePage(): React.JSX.Element {
+
>
);
diff --git a/src/pages/HomePage/sections/Faq.tsx b/src/pages/HomePage/sections/Faq.tsx
new file mode 100644
index 0000000..56bc0a0
--- /dev/null
+++ b/src/pages/HomePage/sections/Faq.tsx
@@ -0,0 +1,17 @@
+// Created by add_section_from_catalog (FeaturesAlternatingSplit).
+
+import React from 'react';
+import FeaturesAlternatingSplit from '@/components/sections/features/FeaturesAlternatingSplit';
+
+export default function FaqSection(): React.JSX.Element {
+ return (
+
+
+
+ );
+}