From 93cbce17e79917efbbaee8bcf629f5855f8567fd Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 18:54:48 +0000 Subject: [PATCH] Add src/app/quote/page.tsx --- src/app/quote/page.tsx | 85 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 src/app/quote/page.tsx diff --git a/src/app/quote/page.tsx b/src/app/quote/page.tsx new file mode 100644 index 0000000..e58f570 --- /dev/null +++ b/src/app/quote/page.tsx @@ -0,0 +1,85 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function QuotePage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file