From 772c3ed4b2e265ee7583c68cacd612456d2bcd8d Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Mon, 27 Apr 2026 01:39:48 +0300 Subject: [PATCH] Bob AI: [SECTION ADD OPERATION] You must create a COMPLETELY NEW sec --- .../sections/contact/ContactFormSection.tsx | 35 +++++++++++++++++++ src/pages/HomePage.tsx | 5 +++ 2 files changed, 40 insertions(+) create mode 100644 src/components/sections/contact/ContactFormSection.tsx 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