From 4b48b84e0bfde0e5ffbce0cd2a7c17a59e8e452f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 14 May 2026 03:27:45 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 175 ++++++++++------------------------------------- 1 file changed, 37 insertions(+), 138 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 91094a1..9ad1153 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,7 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; export default function LandingPage() { return ( @@ -31,16 +32,12 @@ export default function LandingPage() { @@ -193,18 +122,7 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={true} - testimonials={[ - { - id: "1", name: "Anil K.", role: "Traveler", testimonial: "Amazing experience, very helpful app for Nepal travel.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-businesswoman-with-her-red-suitcase_1139-425.jpg"}, - { - id: "2", name: "Sunita R.", role: "Student", testimonial: "Reliable and fast. Love the notification features.", imageSrc: "http://img.b2bpic.net/free-photo/cute-woman-with-old-camera-smiling_23-2147846985.jpg"}, - { - id: "3", name: "Bimal T.", role: "Business Owner", testimonial: "Booking system is very intuitive.", imageSrc: "http://img.b2bpic.net/free-photo/tourism-vacation-excited-guy-tourist-going-holiday-trip-showing-passport-with-tickets-hol_1258-155516.jpg"}, - { - id: "4", name: "Rina M.", role: "Tourist", testimonial: "Great service throughout the trip.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-traveling-woman-with-hat-backpack-holding-thermos_23-2148648661.jpg"}, - { - id: "5", name: "Sajan P.", role: "Professional", testimonial: "Best bus service, GPS tracking is accurate.", imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2623.jpg"}, - ]} + testimonials={[]} title="Passenger Reviews" description="What our users say about us." /> @@ -214,20 +132,7 @@ export default function LandingPage() { @@ -235,23 +140,17 @@ export default function LandingPage() {
-- 2.49.1 From 52147059704a49da03aeb2ad0658ca48cbfe40e7 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 14 May 2026 03:27:46 +0000 Subject: [PATCH 2/2] Add src/app/search/page.tsx --- src/app/search/page.tsx | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/app/search/page.tsx diff --git a/src/app/search/page.tsx b/src/app/search/page.tsx new file mode 100644 index 0000000..dcb8feb --- /dev/null +++ b/src/app/search/page.tsx @@ -0,0 +1,40 @@ +"use client"; + +import { useState } from "react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import Input from '@/components/form/Input'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; + +export default function BusSearchPage() { + const [from, setFrom] = useState(""); + const [to, setTo] = useState(""); + + return ( + + +
+

Search Your Journey

+
+ + + +
+
+ {/* Placeholder for future bus results */} +

Enter details to search for available buses.

+
+
+ +
+ ); +} \ No newline at end of file -- 2.49.1