Update src/app/safaris/page.tsx
This commit is contained in:
@@ -8,7 +8,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import { Calendar, Mountain, Star, Users } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function SafarisPage() {
|
||||
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="Curated Safari Journeys"
|
||||
description="Explore our specialized wildlife and luxury packages."
|
||||
features={[
|
||||
{
|
||||
title: "Migration Safari",
|
||||
description: "Witness the Great Migration in the Mara.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Star,
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/international-animal-rights-day-banner_1308-122979.jpg?_wi=1",
|
||||
imageAlt: "travel award gold badge",
|
||||
},
|
||||
{
|
||||
title: "Family Adventure",
|
||||
description: "Tailor-made itineraries for family bonds.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Users,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-wild-rhino-nature_23-2151685614.jpg?_wi=3",
|
||||
imageAlt: "travel award gold badge",
|
||||
},
|
||||
{ title: "Migration Safari", description: "Witness the Great Migration in the Mara.", bentoComponent: "reveal-icon", icon: Star },
|
||||
{ title: "Family Adventure", description: "Tailor-made itineraries for family bonds.", bentoComponent: "reveal-icon", icon: Users }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -79,66 +53,15 @@ export default function LandingPage() {
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="Safari Planning Details"
|
||||
metrics={[
|
||||
{
|
||||
icon: Calendar,
|
||||
label: "Optimal Months",
|
||||
value: "July-Oct",
|
||||
},
|
||||
{
|
||||
icon: Mountain,
|
||||
label: "Lodging Tiers",
|
||||
value: "4",
|
||||
},
|
||||
]}
|
||||
metrics={[{ icon: Calendar, label: "Optimal Months", value: "July-Oct" }, { icon: Mountain, label: "Lodging Tiers", value: "4" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-wild-rhino-nature_23-2151685497.jpg?_wi=2"
|
||||
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>
|
||||
|
||||
Reference in New Issue
Block a user