From 11299df353963805babe6a334efa0faee7009764 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 13:19:36 +0000 Subject: [PATCH 1/3] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 41 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..2c6ff39 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,41 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 31e00a65b279c72b9b136cfb92627058563f3f6e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 13:19:37 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 137 +++++++---------------------------------------- 1 file changed, 20 insertions(+), 117 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0f2fa7c..fe0793f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,26 +28,11 @@ export default function LandingPage() { @@ -100,9 +55,8 @@ export default function LandingPage() { @@ -111,30 +65,12 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { - id: 1, - title: "Petrol Supply", - description: "High-grade, clean-burning petrol to keep your engine running smoothly.", - imageSrc: "http://img.b2bpic.net/free-vector/oil-change-service-design_1300-131.jpg", - imageAlt: "Petrol Fueling", - }, - { - id: 2, - title: "Diesel Supply", - description: "Reliable, high-efficiency diesel fuel for cars, trucks, and agricultural needs.", - imageSrc: "http://img.b2bpic.net/free-photo/white-electric-car-charging-station_268835-3532.jpg", - imageAlt: "Diesel Fueling", - }, - { - id: 3, - title: "Safe Environment", - description: "Well-lit, clean, and organized station for a stress-free fueling experience.", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-background-app-beauty-business_1303-2362.jpg", - imageAlt: "Safe Petrol Station Environment", - }, + { id: 1, title: "Petrol Supply", description: "High-grade, clean-burning petrol.", imageSrc: "http://img.b2bpic.net/free-vector/oil-change-service-design_1300-131.jpg" }, + { id: 2, title: "Diesel Supply", description: "Reliable diesel for all vehicle types.", imageSrc: "http://img.b2bpic.net/free-photo/white-electric-car-charging-station_268835-3532.jpg" }, + { id: 3, title: "Safe Environment", description: "Well-lit and organized facility.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-background-app-beauty-business_1303-2362.jpg" } ]} title="Premium Services Offered" - description="We offer more than just fuel; we offer reliability and a safe fueling environment." + description="We offer more than just fuel; we offer reliability." /> @@ -144,55 +80,22 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} metrics={[ - { - id: "loc-1", - value: "Jaito, Punjab", - title: "Main Location", - description: "Conveniently located in Jaito with easy access for all types of vehicles.", - imageSrc: "http://img.b2bpic.net/free-vector/pack-locations-realistic-style_23-2147574779.jpg", - }, - { - id: "loc-2", - value: "Directions", - title: "Get Directions", - description: "Click the link below for turn-by-turn navigation via Google Maps.", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-smartphone-with-gps-application_1098-21636.jpg", - }, + { id: "loc-1", value: "Jaito, Punjab", title: "Main Location", description: "Conveniently located with easy access.", imageSrc: "http://img.b2bpic.net/free-vector/pack-locations-realistic-style_23-2147574779.jpg" }, + { id: "loc-2", value: "Find Us", title: "Get Directions", description: "Navigation assistance available.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-smartphone-with-gps-application_1098-21636.jpg" } ]} title="Find Us Easily" - description="Located conveniently in the heart of Jaito, Punjab. Visit us today!" - /> - - -
-
); -} +} \ No newline at end of file -- 2.49.1 From b38e585f41ee2ca2a89cb6cc0754038e6c011192 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 13:19:37 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d0bc7be..1d6cb36 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #ffffff; - --card: #fbfbfb; - --foreground: #1a1a1a; - --primary-cta: #FFD700; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #f5f5f5; + --primary-cta: #ffdf7d; --primary-cta-text: #1a1a1a; --secondary-cta: #1a1a1a; --secondary-cta-text: #ffffff; - --accent: #C5A000; - --background-accent: #f9f9f9; + --accent: #b8860b; + --background-accent: #8b6914; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1