Merge version_1 into main #2
@@ -7,7 +7,7 @@ import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function DriversPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -22,67 +22,67 @@ export default function LandingPage() {
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Hotels", id: "/hotels" },
|
||||
{ name: "Drivers", id: "/drivers" },
|
||||
{ name: "Destinations", id: "/destinations" },
|
||||
{ name: "Plan Trip", id: "/planner" },
|
||||
]}
|
||||
brandName="Nornomade"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Hotels", id: "/hotels" },
|
||||
{ name: "Drivers", id: "/drivers" },
|
||||
{ name: "Destinations", id: "/destinations" },
|
||||
{ name: "Plan Trip", id: "/planner" },
|
||||
]}
|
||||
brandName="Nornomade"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureBento
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Professional Drivers"
|
||||
description="Experienced locals who know the mountain roads."
|
||||
features={[
|
||||
{ title: "Expert Navigators", description: "Local drivers familiar with high-altitude roads.", imageSrc: "http://img.b2bpic.net/free-photo/summer-view-mountain-pass_1398-2452.jpg" },
|
||||
{ title: "Safe Travels", description: "Well-maintained vehicles for mountain trips.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-narrow-ditch-high-green-mountains-norway_181624-8321.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureBento
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Professional Drivers"
|
||||
description="Experienced locals who know the mountain roads."
|
||||
features={[
|
||||
{ title: "Expert Navigators", description: "Local drivers familiar with high-altitude roads." },
|
||||
{ title: "Safe Travels", description: "Well-maintained vehicles for mountain trips." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Hire a Driver"
|
||||
description="Safe travel across the north."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-shot-narrow-ditch-high-green-mountains-norway_181624-8321.jpg"
|
||||
inputs={[
|
||||
{ name: "pick-up", type: "text", placeholder: "Pick-up Location", required: true },
|
||||
{ name: "destination", type: "text", placeholder: "Destination", required: true },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Hire a Driver"
|
||||
description="Safe travel across the north."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-shot-narrow-ditch-high-green-mountains-norway_181624-8321.jpg"
|
||||
inputs={[
|
||||
{ name: "pick-up", type: "text", placeholder: "Pick-up Location", required: true },
|
||||
{ name: "destination", type: "text", placeholder: "Destination", required: true },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Explore", items: [
|
||||
{ label: "Hunza", href: "/destinations" },
|
||||
{ label: "Skardu", href: "/destinations" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Hotels", href: "/hotels" },
|
||||
{ label: "Drivers", href: "/drivers" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Nornomade. All rights reserved."
|
||||
bottomRightText="Contact: support@nornomade.pk"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Explore", items: [
|
||||
{ label: "Hunza", href: "/destinations" },
|
||||
{ label: "Skardu", href: "/destinations" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Hotels", href: "/hotels" },
|
||||
{ label: "Drivers", href: "/drivers" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Nornomade. All rights reserved."
|
||||
bottomRightText="Contact: support@nornomade.pk"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,7 @@ import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function HotelsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -22,67 +22,67 @@ export default function LandingPage() {
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Hotels", id: "/hotels" },
|
||||
{ name: "Drivers", id: "/drivers" },
|
||||
{ name: "Destinations", id: "/destinations" },
|
||||
{ name: "Plan Trip", id: "/planner" },
|
||||
]}
|
||||
brandName="Nornomade"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Hotels", id: "/hotels" },
|
||||
{ name: "Drivers", id: "/drivers" },
|
||||
{ name: "Destinations", id: "/destinations" },
|
||||
{ name: "Plan Trip", id: "/planner" },
|
||||
]}
|
||||
brandName="Nornomade"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureBento
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Luxury and Comfort"
|
||||
description="Top-rated stays in the mountains."
|
||||
features={[
|
||||
{ title: "Luxury Stays", description: "High-end hotels in mountain ranges.", imageSrc: "http://img.b2bpic.net/free-photo/skjolden-norway-may-16-2023-mountain_58702-11010.jpg" },
|
||||
{ title: "Cozy Guest Houses", description: "Experience authentic local hospitality.", imageSrc: "http://img.b2bpic.net/free-photo/house-body-water-mountain_198169-189.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureBento
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Luxury and Comfort"
|
||||
description="Top-rated stays in the mountains."
|
||||
features={[
|
||||
{ title: "Luxury Stays", description: "High-end hotels in mountain ranges." },
|
||||
{ title: "Cozy Guest Houses", description: "Experience authentic local hospitality." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Book Your Stay"
|
||||
description="Direct inquiry to local hotels."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-high-angle-shot-mountainous-scenery-clear-sky_181624-8080.jpg"
|
||||
inputs={[
|
||||
{ name: "checkin", type: "date", placeholder: "Arrival", required: true },
|
||||
{ name: "nights", type: "number", placeholder: "Nights", required: true },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Book Your Stay"
|
||||
description="Direct inquiry to local hotels."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-high-angle-shot-mountainous-scenery-clear-sky_181624-8080.jpg"
|
||||
inputs={[
|
||||
{ name: "checkin", type: "date", placeholder: "Arrival", required: true },
|
||||
{ name: "nights", type: "number", placeholder: "Nights", required: true },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Explore", items: [
|
||||
{ label: "Hunza", href: "/destinations" },
|
||||
{ label: "Skardu", href: "/destinations" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Hotels", href: "/hotels" },
|
||||
{ label: "Drivers", href: "/drivers" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Nornomade. All rights reserved."
|
||||
bottomRightText="Contact: support@nornomade.pk"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Explore", items: [
|
||||
{ label: "Hunza", href: "/destinations" },
|
||||
{ label: "Skardu", href: "/destinations" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Hotels", href: "/hotels" },
|
||||
{ label: "Drivers", href: "/drivers" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Nornomade. All rights reserved."
|
||||
bottomRightText="Contact: support@nornomade.pk"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function PlannerPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -22,68 +22,67 @@ export default function LandingPage() {
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Hotels", id: "/hotels" },
|
||||
{ name: "Drivers", id: "/drivers" },
|
||||
{ name: "Destinations", id: "/destinations" },
|
||||
{ name: "Plan Trip", id: "/planner" },
|
||||
]}
|
||||
brandName="Nornomade"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Hotels", id: "/hotels" },
|
||||
{ name: "Drivers", id: "/drivers" },
|
||||
{ name: "Destinations", id: "/destinations" },
|
||||
{ name: "Plan Trip", id: "/planner" },
|
||||
]}
|
||||
brandName="Nornomade"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="section"
|
||||
title="How the Planner Works"
|
||||
sections={[
|
||||
{
|
||||
heading: "Getting Started", content: {
|
||||
items: [
|
||||
"Input your duration", "Select your regions", "Request local quotes"],
|
||||
},
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="section"
|
||||
title="How the Planner Works"
|
||||
sections={[
|
||||
{
|
||||
heading: "Getting Started", content: {
|
||||
type: "numbered-list", items: ["Input your duration", "Select your regions", "Request local quotes"]
|
||||
},
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Start Planning"
|
||||
description="Tell us about your dream trip."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beach-chairs-near-lake-hills-covered-greenery_181624-14763.jpg"
|
||||
inputs={[
|
||||
{ name: "trip-type", type: "text", placeholder: "e.g. Hiking, Family Tour", required: true },
|
||||
{ name: "budget", type: "text", placeholder: "Budget Range", required: true },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Start Planning"
|
||||
description="Tell us about your dream trip."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beach-chairs-near-lake-hills-covered-greenery_181624-14763.jpg"
|
||||
inputs={[
|
||||
{ name: "trip-type", type: "text", placeholder: "e.g. Hiking, Family Tour", required: true },
|
||||
{ name: "budget", type: "text", placeholder: "Budget Range", required: true },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Explore", items: [
|
||||
{ label: "Hunza", href: "/destinations" },
|
||||
{ label: "Skardu", href: "/destinations" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Hotels", href: "/hotels" },
|
||||
{ label: "Drivers", href: "/drivers" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Nornomade. All rights reserved."
|
||||
bottomRightText="Contact: support@nornomade.pk"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Explore", items: [
|
||||
{ label: "Hunza", href: "/destinations" },
|
||||
{ label: "Skardu", href: "/destinations" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Hotels", href: "/hotels" },
|
||||
{ label: "Drivers", href: "/drivers" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Nornomade. All rights reserved."
|
||||
bottomRightText="Contact: support@nornomade.pk"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user