Update src/app/tours/page.tsx

This commit is contained in:
2026-05-14 10:49:18 +00:00
parent e1cec567fa
commit 727ea6fd46

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TeamCardOne from '@/components/sections/team/TeamCardOne';
@@ -23,28 +23,13 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Tours",
id: "/tours",
},
{
name: "About",
id: "/about",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Tours", id: "/tours" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
]}
brandName="Chalay Ao Travels"
/>
@@ -58,26 +43,11 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "t1",
name: "Ratti Gali & Kel",
price: "$48",
variant: "3 Days",
imageSrc: "http://img.b2bpic.net/free-photo/river-surrounded-by-rocks-sunlight-blue-sky-daytime_181624-22033.jpg",
},
id: "t1", name: "Ratti Gali & Kel", price: "$48", variant: "3 Days", imageSrc: "http://img.b2bpic.net/free-photo/river-surrounded-by-rocks-sunlight-blue-sky-daytime_181624-22033.jpg"},
{
id: "t2",
name: "Swat & Kalam",
price: "$48",
variant: "3 Days",
imageSrc: "http://img.b2bpic.net/free-photo/mountains-stream_1398-2306.jpg",
},
id: "t2", name: "Swat & Kalam", price: "$48", variant: "3 Days", imageSrc: "http://img.b2bpic.net/free-photo/mountains-stream_1398-2306.jpg"},
{
id: "t3",
name: "Naran Valley",
price: "$48",
variant: "3 Days",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-view-rice-fields-lush-green-leepa-valley-kashmir-pakistan_505751-5817.jpg",
},
id: "t3", name: "Naran Valley", price: "$48", variant: "3 Days", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-view-rice-fields-lush-green-leepa-valley-kashmir-pakistan_505751-5817.jpg"},
]}
title="All Packages"
description="Explore our full range of tours."
@@ -94,11 +64,7 @@ export default function LandingPage() {
description="Our expert team is here to make your journey unforgettable."
members={[
{
id: "g1",
name: "Furqan",
role: "Head Guide",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-women-drinking-tea-mountains_74855-23449.jpg",
},
id: "g1", name: "Furqan", role: "Head Guide", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-young-women-drinking-tea-mountains_74855-23449.jpg"},
]}
/>
</div>
@@ -107,33 +73,16 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Quick Links",
items: [
{
label: "Tours",
href: "/tours",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
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",
},
title: "Contact", items: [
{ label: "+92 335 6442987", href: "tel:+923356442987" },
{ label: "WhatsApp Chat", href: "https://wa.me/923356442987" },
],
},
]}
@@ -144,4 +93,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}