diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..edf0c4e
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,30 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx
new file mode 100644
index 0000000..74c6e60
--- /dev/null
+++ b/src/app/booking/page.tsx
@@ -0,0 +1,34 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
+
+export default function BookingPage() {
+ return (
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..0a0ba96
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,34 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
+
+export default function ContactPage() {
+ return (
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/garden/page.tsx b/src/app/garden/page.tsx
new file mode 100644
index 0000000..7995032
--- /dev/null
+++ b/src/app/garden/page.tsx
@@ -0,0 +1,37 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
+
+export default function GardenPage() {
+ return (
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index b2a07d3..63d08fd 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -27,11 +27,11 @@ export default function LandingPage() {
@@ -43,8 +43,8 @@ export default function LandingPage() {
logoText="Green Valley Hotel"
description="Experience unparalleled tranquility and luxury in the heart of nature. Your serene escape awaits."
buttons={[
- { text: "Book Now", href: "#contact" },
- { text: "Explore Rooms", href: "#rooms" },
+ { text: "Book Now", href: "/booking" },
+ { text: "Explore Rooms", href: "/#rooms" },
]}
imageSrc="http://img.b2bpic.net/free-photo/wooden-table-background-cityscape_1153-3807.jpg"
imageAlt="luxury hotel banner resort exterior"
@@ -106,7 +106,7 @@ export default function LandingPage() {
tag="Booking Info"
title="Book Your Stay"
description="Ready to experience the Green Valley? Contact us now to reserve your room or table."
- buttons={[{ text: "Contact Us", href: "mailto:info@greenvalleyhotel.com" }]}
+ buttons={[{ text: "Contact Us", href: "/contact" }]}
/>
diff --git a/src/app/restaurant/page.tsx b/src/app/restaurant/page.tsx
new file mode 100644
index 0000000..e6cb983
--- /dev/null
+++ b/src/app/restaurant/page.tsx
@@ -0,0 +1,37 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
+
+export default function RestaurantPage() {
+ return (
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file