Update src/app/getting-around/page.tsx

This commit is contained in:
2026-05-22 23:21:50 +00:00
parent 13caf21db8
commit ea8bc7aa98

View File

@@ -4,33 +4,34 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import LegalSection from "@/components/legal/LegalSection";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
export default function GettingAroundPage() {
return (
<ThemeProvider defaultButtonVariant="icon-arrow" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="none" cardStyle="solid" primaryButtonStyle="shadow" secondaryButtonStyle="solid" headingFontWeight="medium">
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Visa", id: "/visa-requirements" },
{ name: "Transport", id: "/getting-around" },
{ name: "Best Time", id: "/best-time-to-visit" },
{ name: "Contact", id: "/contact" }
{ name: "Home", id: "/" },
{ name: "Visa", id: "/visa-requirements" },
{ name: "Transport", id: "/getting-around" },
{ name: "Best Time", id: "/best-time-to-visit" },
]}
brandName="Luxuria"
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
/>
<LegalSection
layout="page"
title="Getting Around"
subtitle="Transportation guide for our luxury destinations"
sections={[
{ heading: "Transportation Options", content: { text: "A variety of transport modes are available for travelers to explore with ease." } },
{ heading: "Public Transit", content: { text: "Public transit is reliable and connects all major tourist hubs." } }
{ heading: "Private Transfers", content: { type: "paragraph", text: "We coordinate private chauffeur services and airport transfers to ensure a seamless arrival experience." } },
{ heading: "Local Travel", content: { type: "numbered-list", items: ["Domestic flight connections", "Private yacht charters", "Luxury rental car options"] } }
]}
/>
</div>
/>
<FooterBaseCard
logoText="Luxuria"
columns={[]}
/>
</ReactLenis>
</ThemeProvider>
);