diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..b9c25cd --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,94 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { MessageCircle } from 'lucide-react'; + +export default function ContactPage() { + return ( + + + + + + + NamePhoneEmailMessageSend MessageWe'll respond shortly. Thank you!" + } + ]} + showCard={false} + /> + + + + + ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 41eb23e..f4b8da9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,13 @@ import FooterBase from '@/components/sections/footer/FooterBase'; import { Coffee, Star, Heart, MapPin, MessageCircle } from 'lucide-react'; export default function LandingPage() { + const handleContactClick = () => { + const contactSection = document.getElementById('contact'); + if (contactSection) { + contactSection.scrollIntoView({ behavior: 'smooth' }); + } + }; + return (
We'll respond shortly. Thank you!