diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index d060329..3cfa192 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -6,7 +6,19 @@ import TeamGlassCards from "@/components/sections/team/TeamGlassCards"; import TeamOverlayCards from "@/components/sections/team/TeamOverlayCards"; import TestimonialAvatarCard from "@/components/sections/testimonial/TestimonialAvatarCard"; import FaqTwoColumn from "@/components/sections/faq/FaqTwoColumn"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import BaseContactSplitForm from "@/components/sections/contact/ContactSplitForm"; + +// @ts-ignore +function ContactSplitForm(props) { + return ( + + ); +} export default function HomePage() { return ( @@ -15,9 +27,9 @@ export default function HomePage() {