From e3999447d8917d8300a3f7c60ecb121acf6b7580 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 05:29:10 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 192 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 192 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..44ea865 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,192 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import ContactForm from '@/components/form/ContactForm'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Sparkles, Mail, Phone, MapPin } from 'lucide-react'; +import { useState } from 'react'; + +export default function ContactPage() { + const [submitted, setSubmitted] = useState(false); + + const handleContactSubmit = (email: string) => { + console.log('Contact form submitted:', email); + setSubmitted(true); + setTimeout(() => setSubmitted(false), 3000); + }; + + return ( + + + +
+ +
+ +
+
+
+
+
+ +
+

Email

+ + hello@veroai.com + +

We typically respond within 24 hours

+
+ +
+
+ +
+

Phone

+ + +1 (555) 0123 + +

Mon-Fri, 9am-6pm EST

+
+ +
+
+ +
+

Location

+

New York, NY

+

Serving clients globally

+
+
+
+
+ +
+
+
+

Send us a Message

+

Fill out the form below and our team will get back to you shortly

+ +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +