diff --git a/src/app/quote/page.tsx b/src/app/quote/page.tsx new file mode 100644 index 0000000..ee2276d --- /dev/null +++ b/src/app/quote/page.tsx @@ -0,0 +1,100 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function QuotePage() { + const handleQuoteSubmit = (data: Record) => { + console.log('Quote request submitted:', data); + // Send email or store in database + }; + + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file