From 22fe42056d9f1c380a4563a78c0675340f458d0f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 06:40:02 +0000 Subject: [PATCH 1/2] Add src/app/about/page.tsx --- src/app/about/page.tsx | 70 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..bab5ce1 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,70 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +export default function AboutPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} From 8038fc19242601f306c1736621fa14f24f320de2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 06:40:03 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 168 ++++++++++++----------------------------------- 1 file changed, 41 insertions(+), 127 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ba0f888..73244f3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,21 +29,15 @@ export default function LandingPage() { @@ -52,46 +46,29 @@ export default function LandingPage() {
@@ -104,34 +81,16 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - id: "1", - label: "Search", - title: "Real-Time Finder", - items: [ - "Instant location mapping", - "Live spot status updates", - "Distance tracking", - ], + id: "1", label: "Search", title: "Real-Time Finder", items: [ + "Instant location mapping", "Live spot status updates", "Distance tracking"], }, { - id: "2", - label: "Security", - title: "Live Camera View", - items: [ - "Secure garage monitoring", - "Remote spot checking", - "Vehicle safety peace of mind", - ], + id: "2", label: "Security", title: "Live Camera View", items: [ + "Secure garage monitoring", "Remote spot checking", "Vehicle safety peace of mind"], }, { - id: "3", - label: "Payment", - title: "Pre/Post Payment", - items: [ - "Flexible reservation payments", - "Seamless checkout", - "Multiple payment methods", - ], + id: "3", label: "Payment", title: "Pre/Post Payment", items: [ + "Flexible reservation payments", "Seamless checkout", "Multiple payment methods"], }, ]} title="Smart Parking Intelligence" @@ -146,35 +105,16 @@ export default function LandingPage() { useInvertedBackground={false} plans={[ { - id: "p1", - tag: "Daily", - price: "$5", - period: "/session", - description: "Perfect for short errands and quick visits.", - button: { - text: "Book Now", - }, - featuresTitle: "Includes:", - features: [ - "Reserved spot", - "1-hour buffer", - ], + id: "p1", tag: "Daily", price: "$5", period: "/session", description: "Perfect for short errands and quick visits.", button: { + text: "Book Now"}, + featuresTitle: "Includes:", features: [ + "Reserved spot", "1-hour buffer"], }, { - id: "p2", - tag: "Weekly", - price: "$25", - period: "/week", - description: "Ideal for regular city commuters.", - button: { - text: "Book Now", - }, - featuresTitle: "Includes:", - features: [ - "Assigned spot", - "24/7 access", - "Secure garage", - ], + id: "p2", tag: "Weekly", price: "$25", period: "/week", description: "Ideal for regular city commuters.", button: { + text: "Book Now"}, + featuresTitle: "Includes:", features: [ + "Assigned spot", "24/7 access", "Secure garage"], }, ]} title="Booking Packages" @@ -187,30 +127,15 @@ export default function LandingPage() { useInvertedBackground={false} testimonials={[ { - id: "1", - name: "Alex Rivier", - imageSrc: "http://img.b2bpic.net/free-photo/male-executive-using-his-mobile-phone_1098-1225.jpg", - }, + id: "1", name: "Alex Rivier", imageSrc: "http://img.b2bpic.net/free-photo/male-executive-using-his-mobile-phone_1098-1225.jpg"}, { - id: "2", - name: "Samira Khan", - imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2579.jpg", - }, + id: "2", name: "Samira Khan", imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2579.jpg"}, { - id: "3", - name: "John Doe", - imageSrc: "http://img.b2bpic.net/free-photo/content-mature-woman-reading-book-tablet_1262-18430.jpg", - }, + id: "3", name: "John Doe", imageSrc: "http://img.b2bpic.net/free-photo/content-mature-woman-reading-book-tablet_1262-18430.jpg"}, { - id: "4", - name: "Emily Chen", - imageSrc: "http://img.b2bpic.net/free-photo/successful-business-man-by-skyscraper-talking-phone_1303-10306.jpg", - }, + id: "4", name: "Emily Chen", imageSrc: "http://img.b2bpic.net/free-photo/successful-business-man-by-skyscraper-talking-phone_1303-10306.jpg"}, { - id: "5", - name: "Mike Ross", - imageSrc: "http://img.b2bpic.net/free-photo/feeling-mad-you-angry-offended-good-looking-young-serious-guy-with-moustache-curly-hairstyle-holding-hands-crossed-chest-looking-from-forehead-frowning-intense-gray-wall_176420-27677.jpg", - }, + id: "5", name: "Mike Ross", imageSrc: "http://img.b2bpic.net/free-photo/feeling-mad-you-angry-offended-good-looking-young-serious-guy-with-moustache-curly-hairstyle-holding-hands-crossed-chest-looking-from-forehead-frowning-intense-gray-wall_176420-27677.jpg"}, ]} cardTitle="What Users Say" cardTag="Community Feedback" @@ -222,8 +147,7 @@ export default function LandingPage() {