diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx new file mode 100644 index 0000000..c951727 --- /dev/null +++ b/src/app/blog/page.tsx @@ -0,0 +1,36 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import BlogCardOne from '@/components/sections/blog/BlogCardOne'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function BlogPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx new file mode 100644 index 0000000..e4df089 --- /dev/null +++ b/src/app/booking/page.tsx @@ -0,0 +1,27 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; + +export default function BookingPage() { + return ( + + + +
+

Online Booking

+
+

Booking calendar interface will be initialized here.

+
+
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 48a2858..2bd33ab 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,6 +9,7 @@ import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGaller import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import Head from 'next/head'; export default function LandingPage() { return ( @@ -24,18 +25,20 @@ export default function LandingPage() { secondaryButtonStyle="layered" headingFontWeight="bold" > + + + + +