Update src/app/destinations/page.tsx

This commit is contained in:
2026-05-22 09:25:45 +00:00
parent 2bfcadd24d
commit 60a1b9a2d1

View File

@@ -8,7 +8,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { Camera, Compass, Mountain, Sun } from "lucide-react";
export default function LandingPage() {
export default function DestinationsPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -26,22 +26,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Safaris",
id: "/safaris",
},
{
name: "Destinations",
id: "/destinations",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Safaris", id: "/safaris" },
{ name: "Destinations", id: "/destinations" },
{ name: "Contact", id: "/contact" },
]}
brandName="Enkiama Safaris"
/>
@@ -55,22 +43,8 @@ export default function LandingPage() {
title="Iconic Landscapes"
description="From Amboseli plains to the shores of Lake Turkana."
features={[
{
title: "Amboseli National Park",
description: "Where Kilimanjaro meets the elephants.",
bentoComponent: "reveal-icon",
icon: Mountain,
imageSrc: "http://img.b2bpic.net/free-vector/international-animal-rights-day-banner_1308-122979.jpg?_wi=2",
imageAlt: "travel award gold badge",
},
{
title: "Maasai Mara",
description: "The quintessential wildlife spectacle.",
bentoComponent: "reveal-icon",
icon: Compass,
imageSrc: "http://img.b2bpic.net/free-photo/view-wild-rhino-nature_23-2151685614.jpg?_wi=4",
imageAlt: "travel award gold badge",
},
{ title: "Amboseli National Park", description: "Where Kilimanjaro meets the elephants.", bentoComponent: "reveal-icon", icon: Mountain },
{ title: "Maasai Mara", description: "The quintessential wildlife spectacle.", bentoComponent: "reveal-icon", icon: Compass }
]}
/>
</div>
@@ -79,66 +53,15 @@ export default function LandingPage() {
<AboutMetric
useInvertedBackground={false}
title="Geographic Highlights"
metrics={[
{
icon: Sun,
label: "Avg Temp",
value: "26°C",
},
{
icon: Camera,
label: "Photogenic Zones",
value: "20+",
},
]}
metrics={[{ icon: Sun, label: "Avg Temp", value: "26°C" }, { icon: Camera, label: "Photogenic Zones", value: "20+" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/view-wild-rhino-nature_23-2151685497.jpg?_wi=3"
imageSrc="http://img.b2bpic.net/free-photo/view-wild-rhino-nature_23-2151685497.jpg"
logoText="Enkiama Safaris"
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Our Team",
href: "/about#team",
},
],
},
{
title: "Experiences",
items: [
{
label: "Safari Packages",
href: "/safaris",
},
{
label: "Destinations",
href: "/destinations",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
columns={[{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Our Team", href: "/about#team" }] }, { title: "Experiences", items: [{ label: "Safari Packages", href: "/safaris" }, { label: "Destinations", href: "/destinations" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }]}
copyrightText="© 2025 Enkiama Safaris. All Rights Reserved."
/>
</div>