Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-05-14 10:36:31 +00:00

View File

@@ -22,72 +22,64 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "/"},
{
name: "Tours", id: "/tours"},
{
name: "About", id: "/about"},
{
name: "Reviews", id: "/reviews"},
{
name: "Contact", id: "/contact"},
]}
brandName="Chalay Ao Travels"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Tours", id: "/tours" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
]}
brandName="Chalay Ao Travels"
/>
</div>
<div id="about-story" data-section="about-story">
<TextSplitAbout
useInvertedBackground={true}
title="Who We Are"
description={[
"Chalay Ao Travels is a premier tour operator based in Islamabad.", "We specialize in customized group and private tours to Northern Pakistan."]}
/>
</div>
<div id="about-story" data-section="about-story">
<TextSplitAbout
useInvertedBackground={true}
title="Who We Are"
description={[
"Chalay Ao Travels is a premier tour operator based in Islamabad.", "We specialize in customized group and private tours to Northern Pakistan."
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Our Mission"
sections={[
{
heading: "Safety First", content: {
text: "Your safety is our top priority during every expedition."},
},
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Our Mission"
sections={[
{
heading: "Safety First", content: {
type: "paragraph", text: "Your safety is our top priority during every expedition."
}
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Quick Links", items: [
{
label: "Tours", href: "/tours"},
{
label: "About", href: "/about"},
{
label: "Contact", href: "/contact"},
],
},
{
title: "Contact", items: [
{
label: "+92 335 6442987", href: "tel:+923356442987"},
{
label: "WhatsApp Chat", href: "https://wa.me/923356442987"},
],
},
]}
bottomLeftText="© 2024 Chalay Ao Travels"
bottomRightText="Islamabad, Pakistan"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Quick Links", items: [
{ label: "Tours", href: "/tours" },
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Contact", items: [
{ label: "+92 335 6442987", href: "tel:+923356442987" },
{ label: "WhatsApp Chat", href: "https://wa.me/923356442987" },
],
},
]}
bottomLeftText="© 2024 Chalay Ao Travels"
bottomRightText="Islamabad, Pakistan"
/>
</div>
</ReactLenis>
</ThemeProvider>
);