Update src/app/reviews/page.tsx

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

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 TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
@@ -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"
/>
@@ -57,40 +42,15 @@ export default function LandingPage() {
useInvertedBackground={false}
testimonials={[
{
id: "t1",
name: "Khan Mehwar",
role: "Tourist",
testimonial: "Absolutely amazing experience, very well organized.",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-cool-man-with-ginger-beard-blue-eyes-green-swimming-glasses-printed-white-shirt-showing-peace-signs-orange-backdrop_197531-27686.jpg",
},
id: "t1", name: "Khan Mehwar", role: "Tourist", testimonial: "Absolutely amazing experience, very well organized.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-cool-man-with-ginger-beard-blue-eyes-green-swimming-glasses-printed-white-shirt-showing-peace-signs-orange-backdrop_197531-27686.jpg"},
{
id: "t2",
name: "Munazza Muskan",
role: "Tourist",
testimonial: "Outstanding experience, Furqan bhai is great.",
imageSrc: "http://img.b2bpic.net/free-photo/couple-with-backpack-sitting-bridge_23-2148926910.jpg",
},
id: "t2", name: "Munazza Muskan", role: "Tourist", testimonial: "Outstanding experience, Furqan bhai is great.", imageSrc: "http://img.b2bpic.net/free-photo/couple-with-backpack-sitting-bridge_23-2148926910.jpg"},
{
id: "t3",
name: "Basit Nadeem",
role: "Tourist",
testimonial: "Beautifully managed trip.",
imageSrc: "http://img.b2bpic.net/free-photo/young-hipster-beautiful-couple-hiking-river-forest_285396-2246.jpg",
},
id: "t3", name: "Basit Nadeem", role: "Tourist", testimonial: "Beautifully managed trip.", imageSrc: "http://img.b2bpic.net/free-photo/young-hipster-beautiful-couple-hiking-river-forest_285396-2246.jpg"},
{
id: "t4",
name: "Anonymous",
role: "Tourist",
testimonial: "First snow experience was magical.",
imageSrc: "http://img.b2bpic.net/free-photo/friends-travelers-smiling-holding-map-giving-highfive-outside_176420-6900.jpg",
},
id: "t4", name: "Anonymous", role: "Tourist", testimonial: "First snow experience was magical.", imageSrc: "http://img.b2bpic.net/free-photo/friends-travelers-smiling-holding-map-giving-highfive-outside_176420-6900.jpg"},
{
id: "t5",
name: "Customer",
role: "Tourist",
testimonial: "Great attention to detail.",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-couple-hiking-trip_23-2150343045.jpg",
},
id: "t5", name: "Customer", role: "Tourist", testimonial: "Great attention to detail.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-couple-hiking-trip_23-2150343045.jpg"},
]}
title="Customer Reviews"
description="What our travellers have to say."
@@ -105,9 +65,7 @@ export default function LandingPage() {
author="Sara"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/portrait-inspired-elderly-woman-with-orange-backpack-sporty-woman-casual-clothes-looking-forward-with-smile-sport-adventure-hobby-concept_74855-23347.jpg",
alt: "Happy traveller",
},
src: "http://img.b2bpic.net/free-photo/portrait-inspired-elderly-woman-with-orange-backpack-sporty-woman-casual-clothes-looking-forward-with-smile-sport-adventure-hobby-concept_74855-23347.jpg", alt: "Happy traveller"},
]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
@@ -118,33 +76,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" },
],
},
]}
@@ -155,4 +96,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}