4 Commits

Author SHA1 Message Date
747e6af9b5 Update src/app/page.tsx 2026-05-04 16:58:47 +00:00
d8881ba561 Update src/app/page.tsx 2026-05-04 16:58:16 +00:00
12201be77f Merge version_2 into main
Merge version_2 into main
2026-05-04 16:58:00 +00:00
c2ae02e3ef Merge version_2 into main
Merge version_2 into main
2026-05-04 16:57:49 +00:00

View File

@@ -3,16 +3,15 @@
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroOverlay from "@/components/sections/hero/HeroOverlay"; import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import ContactCTA from "@/components/sections/contact/ContactCTA"; import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterMedia from "@/components/sections/footer/FooterMedia"; import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Zap, Gauge, ReceiptText, MapPin, Star } from "lucide-react"; import { Zap, Gauge, ReceiptText, MapPin } from "lucide-react";
export default function EcoDrivePage() { export default function EcoDrivePage() {
return ( return (
@@ -44,23 +43,16 @@ export default function EcoDrivePage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroOverlay <HeroBillboard
title="Smart Fuel Intelligence" title="Smart Fuel Intelligence"
description="Optimize your drive with AI-powered receipt scanning, real-time gas station ratings, and intelligent fuel tracking in one minimalist interface." description="Optimize your drive with AI-powered receipt scanning, real-time gas station ratings, and intelligent fuel tracking in one minimalist interface."
avatars={[
{ src: "http://img.b2bpic.net/free-photo/stylish-bearded-male-eyeglasses-with-tattoo-his-arm-using-portable-tablet-pc-back-seat-car_613910-12276.jpg", alt: "User" },
{ src: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-background-two-trams_641386-322.jpg", alt: "User" },
{ src: "http://img.b2bpic.net/free-photo/technician-making-sure-high-tech-facility-data-center-is-appropriately-equipped_482257-94430.jpg", alt: "User" },
]}
avatarText="Join 50k+ smart drivers"
buttons={[ buttons={[
{ text: "Get Started", href: "#contact" }, { text: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#services" }, { text: "Learn More", href: "#services" },
]} ]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/artistic-blurry-colorful-wallpaper-background_58702-10148.jpg" imageSrc="http://img.b2bpic.net/free-photo/artistic-blurry-colorful-wallpaper-background_58702-10148.jpg"
imageAlt="EcoDrive dashboard with fuel metrics" background={{ variant: "animated-grid" }}
showDimOverlay={true} ariaLabel="Hero section"
/> />
</div> </div>
@@ -144,7 +136,7 @@ export default function EcoDrivePage() {
title="Ready to Drive Smarter?" title="Ready to Drive Smarter?"
description="Download EcoDrive and start optimizing your fuel efficiency today." description="Download EcoDrive and start optimizing your fuel efficiency today."
buttons={[{ text: "Download Now", href: "#" }]} buttons={[{ text: "Download Now", href: "#" }]}
background={{ variant: "glowing-orb" }} background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true} useInvertedBackground={true}
/> />
</div> </div>
@@ -163,4 +155,4 @@ export default function EcoDrivePage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }