diff --git a/src/app/page.tsx b/src/app/page.tsx index d83abcd..dba6bc5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,25 +6,11 @@ import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleC import SplitAbout from "@/components/sections/about/SplitAbout"; import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven"; import TeamCardTwo from "@/components/sections/team/TeamCardTwo"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import { Award, BarChart3, Brain, Github, Linkedin, Mail, Sparkles, Target, Users, Zap } from "lucide-react"; export default function LandingPage() { - const handleContactSubmit = (data: Record) => { - // Send form data to webild email - fetch('https://api.example.com/contact', { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - body: JSON.stringify({ - ...data, - recipient: 'webild@webild.com' - }) - }).catch(err => console.error('Form submission error:', err)); - }; - return (
-