diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..d63bfb7 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,31 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function ContactPage() { + return ( + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx new file mode 100644 index 0000000..09a23a4 --- /dev/null +++ b/src/app/faq/page.tsx @@ -0,0 +1,37 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function FaqPage() { + return ( + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/interactive/page.tsx b/src/app/interactive/page.tsx new file mode 100644 index 0000000..a1f71b7 --- /dev/null +++ b/src/app/interactive/page.tsx @@ -0,0 +1,34 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; + +export default function InteractivePage() { + return ( + + + +
+

Journey Configurator

+ +
+
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 9323cdd..22bd223 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,21 +30,22 @@ export default function LuxuryTravelAgencyTemplatePage() { -