Merge version_1 into main #2

Merged
bender merged 2 commits from version_1 into main 2026-05-04 17:41:46 +00:00
Showing only changes of commit 08d533b484 - Show all commits

View File

@@ -8,7 +8,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { Instagram, Mountain, Twitter, Waves } from "lucide-react";
export default function LandingPage() {
export default function ToursPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -26,36 +26,16 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Tours",
id: "/tours",
},
{
name: "Services",
id: "/services",
},
{
name: "Airport Transfer",
id: "/airport-transfer",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Tours", id: "/tours" },
{ name: "Services", id: "/services" },
{ name: "Airport Transfer", id: "/airport-transfer" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Indigo Voyages"
button={{
text: "Book Now",
href: "/contact",
}}
text: "Book Now", href: "/contact"}}
/>
</div>
@@ -67,22 +47,8 @@ export default function LandingPage() {
title="Explore Our Curated Tours"
description="Discover hidden gems and classic landmarks with unparalleled luxury."
features={[
{
title: "Alpine Retreats",
description: "High-altitude luxury.",
bentoComponent: "reveal-icon",
icon: Mountain,
imageSrc: "http://img.b2bpic.net/free-photo/musician-with-guitar-tablet_23-2147782094.jpg?_wi=2",
imageAlt: "cultural tour city exploration",
},
{
title: "Coastal Escapes",
description: "Sun, sand, and serenity.",
bentoComponent: "reveal-icon",
icon: Waves,
imageSrc: "http://img.b2bpic.net/free-photo/private-luxury-jet-airport-terminal_657883-288.jpg?_wi=3",
imageAlt: "cultural tour city exploration",
},
{ title: "Alpine Retreats", description: "High-altitude luxury.", bentoComponent: "reveal-icon", icon: Mountain },
{ title: "Coastal Escapes", description: "Sun, sand, and serenity.", bentoComponent: "reveal-icon", icon: Waves },
]}
/>
</div>
@@ -90,18 +56,11 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Inquiry"
title="Book a Tour"
description="Customized to your exact requirements."
buttons={[
{
text: "Contact Us",
href: "/contact",
},
]}
buttons={[{ text: "Contact Us", href: "/contact" }]}
/>
</div>
@@ -110,16 +69,8 @@ export default function LandingPage() {
logoText="Indigo Voyages"
copyrightText="© 2025 Indigo Voyages. Luxury Travel & Transport."
socialLinks={[
{
icon: Twitter,
href: "#",
ariaLabel: "Twitter",
},
{
icon: Instagram,
href: "#",
ariaLabel: "Instagram",
},
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
]}
/>
</div>