Merge version_1 into main #1

Merged
bender merged 2 commits from version_1 into main 2026-04-18 09:51:22 +00:00
2 changed files with 30 additions and 88 deletions

View File

@@ -7,7 +7,7 @@ import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwen
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function LandingPage() {
export default function BookingsPage() {
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="Choose your path."
features={[
{
id: "t1",
title: "City Tour",
author: "Guide",
description: "Walk through history.",
imageSrc: "http://img.b2bpic.net/free-photo/gothic-vault-decorative-paintings-architectural-details_169016-68651.jpg",
id: "t1", title: "City Tour", author: "Guide", description: "Walk through history.", tags: ["Guided", "Cultural"],
imageSrc: "http://img.b2bpic.net/free-photo/gothic-vault-decorative-paintings-architectural-details_169016-68651.jpg"
},
{
id: "t2",
title: "Mountain Hike",
author: "Guide",
description: "Nature views.",
imageSrc: "http://img.b2bpic.net/free-photo/islamic-mosque-blue-ornament_1085-534.jpg",
},
id: "t2", title: "Mountain Hike", author: "Guide", description: "Nature views.", tags: ["Nature", "Adventure"],
imageSrc: "http://img.b2bpic.net/free-photo/islamic-mosque-blue-ornament_1085-534.jpg"
}
]}
/>
</div>
@@ -75,9 +57,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
text="Book your experience now."
/>
</div>
@@ -85,14 +65,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>

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>