Update src/app/destinations/page.tsx

This commit is contained in:
2026-04-18 09:51:15 +00:00
parent 338fb19485
commit 5adbf51f55

View File

@@ -7,7 +7,7 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
export default function LandingPage() {
export default function DestinationsPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -25,22 +25,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Destinations",
id: "/destinations",
},
{
name: "Bookings",
id: "/bookings",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Destinations", id: "/destinations" },
{ name: "Bookings", id: "/bookings" },
{ name: "Contact", id: "/contact" },
]}
brandName="Shahrisabz Tourism"
/>
@@ -55,19 +43,13 @@ export default function LandingPage() {
description="Visit historic sites."
features={[
{
id: "a1",
title: "Mosque",
author: "Local",
description: "Ancient mosque.",
imageSrc: "http://img.b2bpic.net/free-photo/islamic-mosque-ornamental-tiles_1085-533.jpg",
id: "a1", title: "Mosque", author: "Local", description: "Ancient mosque.", tags: ["Historic", "Architecture"],
imageSrc: "http://img.b2bpic.net/free-photo/islamic-mosque-ornamental-tiles_1085-533.jpg"
},
{
id: "a2",
title: "Tile Work",
author: "Local",
description: "Beautiful tiles.",
imageSrc: "http://img.b2bpic.net/free-photo/white-arabesque-lantern-tile-texture_84443-73019.jpg",
},
id: "a2", title: "Tile Work", author: "Local", description: "Beautiful tiles.", tags: ["Art", "Cultural"],
imageSrc: "http://img.b2bpic.net/free-photo/white-arabesque-lantern-tile-texture_84443-73019.jpg"
}
]}
/>
</div>
@@ -82,21 +64,13 @@ export default function LandingPage() {
description="Hear from guests."
testimonials={[
{
id: "v1",
name: "A",
role: "User",
company: "Co",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-woman-looking-smiling-hills-white-coat_176474-4920.jpg",
id: "v1", name: "A", role: "User", company: "Co", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-woman-looking-smiling-hills-white-coat_176474-4920.jpg"
},
{
id: "v2",
name: "B",
role: "User",
company: "Co",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-throwing-away-her-mask-gloves-take-off-remove-mask-from-her-face-end-pandemic-coronavirus-concept-pollen-allergy-spring_657921-506.jpg",
},
id: "v2", name: "B", role: "User", company: "Co", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-throwing-away-her-mask-gloves-take-off-remove-mask-from-her-face-end-pandemic-coronavirus-concept-pollen-allergy-spring_657921-506.jpg"
}
]}
/>
</div>
@@ -104,14 +78,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="SHARISABZ"
leftLink={{
text: "Privacy Policy",
href: "/privacy",
}}
rightLink={{
text: "Terms & Conditions",
href: "/terms",
}}
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
rightLink={{ text: "Terms & Conditions", href: "/terms" }}
/>
</div>
</ReactLenis>