diff --git a/src/app/page.tsx b/src/app/page.tsx index ef8afe7..73342c8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Send, MapPin, Mail, Instagram, MessageCircle } from "lucide-react"; +import ContactSplit from '@/components/sections/contact/ContactSplit'; import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia'; @@ -28,14 +30,11 @@ export default function LandingPage() {
@@ -75,12 +64,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - id: "u1", title: "Forgotten Ruins", description: "Centuries-old architecture lost in time.", tag: "Ancient", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-shot-trees-front-beautiful-rocky-cliffs_181624-18521.jpg"}, - { - id: "u2", title: "High Altitude Paths", description: "Breathtaking trails for the elite.", tag: "Trekking", imageSrc: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-castle-hill-new-zealand_181624-17353.jpg"}, - { - id: "u3", title: "Hidden Oases", description: "Lush sanctuaries in arid terrain.", tag: "Nature", imageSrc: "http://img.b2bpic.net/free-photo/landscape-shot-semi-arid-deserted-area-ahead-beautiful-mountain-chain_181624-14457.jpg"}, + { id: "u1", title: "Forgotten Ruins", description: "Centuries-old architecture lost in time.", tag: "Ancient", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-shot-trees-front-beautiful-rocky-cliffs_181624-18521.jpg" }, + { id: "u2", title: "High Altitude Paths", description: "Breathtaking trails for the elite.", tag: "Trekking", imageSrc: "http://img.b2bpic.net/free-photo/vertical-high-angle-shot-castle-hill-new-zealand_181624-17353.jpg" }, + { id: "u3", title: "Hidden Oases", description: "Lush sanctuaries in arid terrain.", tag: "Nature", imageSrc: "http://img.b2bpic.net/free-photo/landscape-shot-semi-arid-deserted-area-ahead-beautiful-mountain-chain_181624-14457.jpg" }, ]} title="The Unseen" description="Rarely visited wonders, captured for the curious few." @@ -93,18 +79,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} plans={[ - { - id: "basic", badge: "Beginner", price: "$499", subtitle: "Core GPS coordinates", features: [ - "Limited access", "GPS maps", "Safe travel tips"], - }, - { - id: "explorer", badge: "Explorer", price: "$1299", subtitle: "Expert contacts included", features: [ - "Full GPS access", "Local expert contacts", "Priority support"], - }, - { - id: "elite", badge: "Elite", price: "$2999", subtitle: "Full expedition service", features: [ - "4x4 transport guides", "Private fixer access", "Personalized routes"], - }, + { id: "basic", badge: "Beginner", price: "$499", subtitle: "Core GPS coordinates", features: ["Limited access", "GPS maps", "Safe travel tips"] }, + { id: "explorer", badge: "Explorer", price: "$1299", subtitle: "Expert contacts included", features: ["Full GPS access", "Local expert contacts", "Priority support"] }, + { id: "elite", badge: "Elite", price: "$2999", subtitle: "Full expedition service", features: ["4x4 transport guides", "Private fixer access", "Personalized routes"] }, ]} title="Membership Plans" description="Select the level of access that matches your desire for adventure." @@ -115,16 +92,11 @@ export default function LandingPage() {