+
);
-}
+}
\ No newline at end of file
diff --git a/src/app/trekking/page.tsx b/src/app/trekking/page.tsx
new file mode 100644
index 0000000..eb25b2a
--- /dev/null
+++ b/src/app/trekking/page.tsx
@@ -0,0 +1,45 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
+import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
+import FooterBase from '@/components/sections/footer/FooterBase';
+
+export default function TrekkingPage() {
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Wildlife", id: "/wildlife" },
+ { name: "Zanzibar", id: "/zanzibar" },
+ { name: "Trekking", id: "#" },
+ { name: "Culture", id: "/cultural-experiences" },
+ ];
+
+ return (
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/wildlife/page.tsx b/src/app/wildlife/page.tsx
new file mode 100644
index 0000000..d808b7d
--- /dev/null
+++ b/src/app/wildlife/page.tsx
@@ -0,0 +1,45 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
+import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
+import FooterBase from '@/components/sections/footer/FooterBase';
+
+export default function WildlifePage() {
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Wildlife", id: "#" },
+ { name: "Zanzibar", id: "/zanzibar" },
+ { name: "Trekking", id: "/trekking" },
+ { name: "Culture", id: "/cultural-experiences" },
+ ];
+
+ return (
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/zanzibar/page.tsx b/src/app/zanzibar/page.tsx
new file mode 100644
index 0000000..8940192
--- /dev/null
+++ b/src/app/zanzibar/page.tsx
@@ -0,0 +1,45 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
+import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
+import FooterBase from '@/components/sections/footer/FooterBase';
+
+export default function ZanzibarPage() {
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Wildlife", id: "/wildlife" },
+ { name: "Zanzibar", id: "#" },
+ { name: "Trekking", id: "/trekking" },
+ { name: "Culture", id: "/cultural-experiences" },
+ ];
+
+ return (
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file