diff --git a/src/app/destinations/page.tsx b/src/app/destinations/page.tsx index abdbb12..687fa94 100644 --- a/src/app/destinations/page.tsx +++ b/src/app/destinations/page.tsx @@ -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 ( @@ -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 } ]} /> @@ -79,66 +53,15 @@ export default function LandingPage() {