diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx new file mode 100644 index 0000000..43e113d --- /dev/null +++ b/src/app/booking/page.tsx @@ -0,0 +1,64 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import { useState } from 'react'; + +export default function BookingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/bookings/page.tsx b/src/app/bookings/page.tsx new file mode 100644 index 0000000..1baed33 --- /dev/null +++ b/src/app/bookings/page.tsx @@ -0,0 +1,50 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function BookingsPage() { + return ( + + + + + + + + ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 707a633..d5bcb0d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,14 +2,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import ContactFaq from '@/components/sections/contact/ContactFaq'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit'; -import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import TextAbout from '@/components/sections/about/TextAbout'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import { Mail, Phone, MapPin } from "lucide-react"; export default function LandingPage() { return ( @@ -29,22 +29,11 @@ export default function LandingPage() {