Update src/app/page.tsx

This commit is contained in:
2026-05-13 18:50:26 +00:00
parent 8cf0b12ff6
commit e459818bbb

View File

@@ -4,14 +4,12 @@ import ReactLenis from "lenis/react";
import HeroCentered from "@/components/sections/hero/HeroCentered"; import HeroCentered from "@/components/sections/hero/HeroCentered";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import FeatureCardSix from "@/components/sections/feature/FeatureCardSix"; import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Sparkles, Plane, Compass, Instagram, Facebook, Linkedin } from "lucide-react"; import { Sparkles, Plane } from "lucide-react";
export default function LuxuryTravelAgencyTemplatePage() { export default function LuxuryTravelAgencyTemplatePage() {
return ( return (
@@ -28,6 +26,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
headingFontWeight="medium" headingFontWeight="medium"
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ name: "About", id: "about" }, { name: "About", id: "about" },
@@ -39,7 +38,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
brandName="PeakOcean" brandName="PeakOcean"
button={{ text: "Plan Your Escape", href: "#contact" }} button={{ text: "Plan Your Escape", href: "#contact" }}
/> />
<div id="hero"> </div>
<div id="hero" data-section="hero">
<HeroCentered <HeroCentered
title="PeakOcean Expeditions" title="PeakOcean Expeditions"
description="Cinematic 3D horizons where towering mountain peaks embrace the deep, infinite ocean." description="Cinematic 3D horizons where towering mountain peaks embrace the deep, infinite ocean."
@@ -54,7 +54,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
]} ]}
/> />
</div> </div>
<div id="about"> <div id="about" data-section="about">
<InlineImageSplitTextAbout <InlineImageSplitTextAbout
className="pt-20" className="pt-20"
heading={[ heading={[
@@ -68,7 +68,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
useInvertedBackground={false} useInvertedBackground={false}
/> />
</div> </div>
<div id="services"> <div id="services" data-section="services">
<FeatureCardSix <FeatureCardSix
tag="Services" tag="Services"
tagIcon={Sparkles} tagIcon={Sparkles}
@@ -83,7 +83,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
]} ]}
/> />
</div> </div>
<div id="destinations"> <div id="destinations" data-section="destinations">
<FeatureCardMedia <FeatureCardMedia
tag="Destinations" tag="Destinations"
tagIcon={Plane} tagIcon={Plane}
@@ -91,13 +91,14 @@ export default function LuxuryTravelAgencyTemplatePage() {
description="Select from our curated list of ocean gems and mountain wonders." description="Select from our curated list of ocean gems and mountain wonders."
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
animationType="blur-reveal"
features={[ features={[
{ id: "1", title: "Coral Sea Atoll", description: "Pristine ocean seclusion.", tag: "Ocean", imageSrc: "http://img.b2bpic.net/free-photo/vibrant-coral-reef-underwater_23-2152006401.jpg" }, { id: "1", title: "Coral Sea Atoll", description: "Pristine ocean seclusion.", tag: "Ocean", imageSrc: "http://img.b2bpic.net/free-photo/vibrant-coral-reef-underwater_23-2152006401.jpg" },
{ id: "2", title: "Everest North Face", description: "High-altitude majesty.", tag: "Mountain", imageSrc: "http://img.b2bpic.net/free-photo/mountain-cover-with-snow_417767-169.jpg" }, { id: "2", title: "Everest North Face", description: "High-altitude majesty.", tag: "Mountain", imageSrc: "http://img.b2bpic.net/free-photo/mountain-cover-with-snow_417767-169.jpg" },
]} ]}
/> />
</div> </div>
<div id="reviews"> <div id="reviews" data-section="reviews">
<TestimonialCardTwo <TestimonialCardTwo
tag="Reviews" tag="Reviews"
title="Voices of Discovery" title="Voices of Discovery"
@@ -110,14 +111,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
]} ]}
/> />
</div> </div>
<div id="contact"> <div id="footer" data-section="footer">
<ContactSplitForm
title="Plan Your Summit"
description="Ready to explore the extremes? Reach out today."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/>
</div>
<FooterBaseCard <FooterBaseCard
logoText="PeakOcean" logoText="PeakOcean"
columns={[ columns={[
@@ -125,6 +119,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
{ title: "Connect", items: [{ label: "Contact", href: "#contact" }] } { title: "Connect", items: [{ label: "Contact", href: "#contact" }] }
]} ]}
/> />
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );