diff --git a/src/components/sections/contact/ContactFormSection.tsx b/src/components/sections/contact/ContactFormSection.tsx
new file mode 100644
index 0000000..e800996
--- /dev/null
+++ b/src/components/sections/contact/ContactFormSection.tsx
@@ -0,0 +1,35 @@
+"use client";
+
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
+
+export default function ContactFormSection() {
+ return (
+
+ );
+}
\ No newline at end of file
diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index 4a3a34c..42f59c7 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -9,6 +9,7 @@ import InfoCardMarquee from '@/components/ui/InfoCardMarquee';
import TeamSection from '@/components/sections/team/TeamSection';
import StatsSection from '@/components/sections/other/StatsSection';
import BlogSection from '@/components/sections/blog/BlogSection';
+import { ContactFormSection } from '@/components/sections/contact/ContactFormSection';
export default function HomePage() {
return (
@@ -301,6 +302,10 @@ export default function HomePage() {
+
+
+
+
>
);
}
\ No newline at end of file