Update src/app/contact/page.tsx

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

View File

@@ -8,7 +8,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { Edit, FileText, Mail, Phone } from "lucide-react";
export default function LandingPage() {
export default function ContactPage() {
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"
/>
@@ -51,18 +39,7 @@ export default function LandingPage() {
<AboutMetric
useInvertedBackground={false}
title="Let's Start Your Journey"
metrics={[
{
icon: Phone,
label: "Direct Support",
value: "+254 000",
},
{
icon: Mail,
label: "Inquiries",
value: "hello@enkiama.com",
},
]}
metrics={[{ icon: Phone, label: "Direct Support", value: "+254 000" }, { icon: Mail, label: "Inquiries", value: "hello@enkiama.com" }]}
/>
</div>
@@ -74,71 +51,17 @@ export default function LandingPage() {
title="Booking Process"
description="Simple steps to your bespoke African dream."
features={[
{
title: "Inquiry",
description: "Share your preferences and dates.",
bentoComponent: "reveal-icon",
icon: Edit,
imageSrc: "http://img.b2bpic.net/free-vector/international-animal-rights-day-banner_1308-122979.jpg?_wi=3",
imageAlt: "travel award gold badge",
},
{
title: "Proposal",
description: "We craft a personalized itinerary.",
bentoComponent: "reveal-icon",
icon: FileText,
imageSrc: "http://img.b2bpic.net/free-photo/view-wild-rhino-nature_23-2151685614.jpg?_wi=5",
imageAlt: "travel award gold badge",
},
{ title: "Inquiry", description: "Share your preferences and dates.", bentoComponent: "reveal-icon", icon: Edit },
{ title: "Proposal", description: "We craft a personalized itinerary.", bentoComponent: "reveal-icon", icon: FileText }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/view-wild-rhino-nature_23-2151685497.jpg?_wi=4"
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>