Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9b52934976 | |||
| 4888b02129 | |||
| 6447b47057 | |||
| 9f0199f05d |
76
src/app/features/page.tsx
Normal file
76
src/app/features/page.tsx
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||||
|
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
||||||
|
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
|
||||||
|
import { Zap, Shield } from "lucide-react";
|
||||||
|
|
||||||
|
export default function FeaturesPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="hover-magnetic"
|
||||||
|
defaultTextAnimation="reveal-blur"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="mediumLarge"
|
||||||
|
sizing="mediumLarge"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="glass-depth"
|
||||||
|
primaryButtonStyle="primary-glow"
|
||||||
|
secondaryButtonStyle="radial-glow"
|
||||||
|
headingFontWeight="bold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Features", id: "/features" },
|
||||||
|
]}
|
||||||
|
brandName="Elite Auto"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="features" data-section="features">
|
||||||
|
<FeatureBorderGlow
|
||||||
|
title="Advanced Features"
|
||||||
|
description="Discover what makes our service truly exceptional."
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{ icon: Zap, title: "Speed", description: "Lightning fast performance." },
|
||||||
|
{ icon: Shield, title: "Security", description: "Top-tier protection for your assets." }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="pricing" data-section="pricing">
|
||||||
|
<PricingCardOne
|
||||||
|
title="Flexible Pricing"
|
||||||
|
description="Choose the plan that suits your needs."
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
plans={[
|
||||||
|
{ id: "basic", badge: "Essential", price: "$99/mo", subtitle: "For individuals", features: ["Core features", "Standard support"] },
|
||||||
|
{ id: "pro", badge: "Premium", price: "$299/mo", subtitle: "For professionals", features: ["All core features", "24/7 Priority support", "Advanced analytics"] }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBaseCard
|
||||||
|
logoText="ELITE AUTO"
|
||||||
|
columns={[
|
||||||
|
{ title: "Company", items: [{ label: "Home", href: "/" }] }
|
||||||
|
]}
|
||||||
|
copyrightText="© 2025 Elite Auto Group. All rights reserved."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
143
src/app/page.tsx
143
src/app/page.tsx
@@ -31,21 +31,15 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Collection",
|
name: "Collection", id: "products"},
|
||||||
id: "products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Features",
|
name: "Features", id: "features"},
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Pricing", id: "pricing"},
|
||||||
id: "contact",
|
{
|
||||||
},
|
name: "Contact", id: "contact"},
|
||||||
]}
|
]}
|
||||||
brandName="Elite Auto"
|
brandName="Elite Auto"
|
||||||
/>
|
/>
|
||||||
@@ -57,35 +51,21 @@ export default function LandingPage() {
|
|||||||
description="Explore the world's most coveted luxury vehicles. Configure your dream car or schedule an exclusive test drive with our premium dealers."
|
description="Explore the world's most coveted luxury vehicles. Configure your dream car or schedule an exclusive test drive with our premium dealers."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Discover Your Perfect Match",
|
text: "Discover Your Perfect Match", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
slides={[
|
slides={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/black-car-garage_417767-26.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/black-car-garage_417767-26.jpg", imageAlt: "Luxury car in studio"},
|
||||||
imageAlt: "Luxury car in studio",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-driving-car-road_1303-17095.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/man-driving-car-road_1303-17095.jpg", imageAlt: "Luxury sedan"},
|
||||||
imageAlt: "Luxury sedan",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/superhero-car-vintage-style_23-2151636187.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/superhero-car-vintage-style_23-2151636187.jpg", imageAlt: "Close up headlight"},
|
||||||
imageAlt: "Close up headlight",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-exterior-details-modern-white-car_181624-22534.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-exterior-details-modern-white-car_181624-22534.jpg", imageAlt: "Driving on road"},
|
||||||
imageAlt: "Driving on road",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/black-interior-car-center-control-space_53876-96704.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/black-interior-car-center-control-space_53876-96704.jpg", imageAlt: "Luxury interior"},
|
||||||
imageAlt: "Luxury interior",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-smooth-empty-grey-studio-well-use-as-backgroundbusiness-reportdigitalwebsite-templatebackdrop_1258-96038.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/abstract-smooth-empty-grey-studio-well-use-as-backgroundbusiness-reportdigitalwebsite-templatebackdrop_1258-96038.jpg", imageAlt: "Supercar profile"},
|
||||||
imageAlt: "Supercar profile",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
autoplayDelay={4000}
|
autoplayDelay={4000}
|
||||||
/>
|
/>
|
||||||
@@ -112,41 +92,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Luxury Electric Sedan", price: "$125,000", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-choosing-car-car-showroom_1303-22808.jpg"},
|
||||||
name: "Luxury Electric Sedan",
|
|
||||||
price: "$125,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-choosing-car-car-showroom_1303-22808.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "High-Performance Coupe", price: "$185,000", imageSrc: "http://img.b2bpic.net/free-photo/exterior-modern-white-luxury-car-with-white-background_181624-25460.jpg"},
|
||||||
name: "High-Performance Coupe",
|
|
||||||
price: "$185,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/exterior-modern-white-luxury-car-with-white-background_181624-25460.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Luxury Touring SUV", price: "$150,000", imageSrc: "http://img.b2bpic.net/free-photo/front-view-fancy-car-available-selling_23-2148332887.jpg"},
|
||||||
name: "Luxury Touring SUV",
|
|
||||||
price: "$150,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-fancy-car-available-selling_23-2148332887.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "Exotic Convertible", price: "$295,000", imageSrc: "http://img.b2bpic.net/free-photo/just-married-couple-with-their-car_23-2149479850.jpg"},
|
||||||
name: "Exotic Convertible",
|
|
||||||
price: "$295,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/just-married-couple-with-their-car_23-2149479850.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "Compact Premium Hatch", price: "$65,000", imageSrc: "http://img.b2bpic.net/free-photo/close-up-metallic-car_23-2151113206.jpg"},
|
||||||
name: "Compact Premium Hatch",
|
|
||||||
price: "$65,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-metallic-car_23-2151113206.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Track-Ready Roadster", price: "$210,000", imageSrc: "http://img.b2bpic.net/free-photo/men-fashion-editorial-outdoors_23-2151905311.jpg"},
|
||||||
name: "Track-Ready Roadster",
|
|
||||||
price: "$210,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/men-fashion-editorial-outdoors_23-2151905311.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Current Inventory"
|
title="Current Inventory"
|
||||||
description="Browse our curated collection of industry-leading luxury vehicles."
|
description="Browse our curated collection of industry-leading luxury vehicles."
|
||||||
@@ -161,19 +117,13 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: Award,
|
icon: Award,
|
||||||
title: "Exclusivity",
|
title: "Exclusivity", description: "Access to limited-run models and private auctions."},
|
||||||
description: "Access to limited-run models and private auctions.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Zap,
|
icon: Zap,
|
||||||
title: "Innovation",
|
title: "Innovation", description: "Seamless integration with the latest automotive technology."},
|
||||||
description: "Seamless integration with the latest automotive technology.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Shield,
|
icon: Shield,
|
||||||
title: "Heritage",
|
title: "Heritage", description: "Unrivaled expertise in classic and contemporary marques."},
|
||||||
description: "Unrivaled expertise in classic and contemporary marques.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Why Choose Us"
|
title="Why Choose Us"
|
||||||
description="Delivering unparalleled prestige and technical precision at every step."
|
description="Delivering unparalleled prestige and technical precision at every step."
|
||||||
@@ -188,25 +138,15 @@ export default function LandingPage() {
|
|||||||
author="Marcus V., Collection Owner"
|
author="Marcus V., Collection Owner"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/elegant-uber-driver-giving-taxi-ride_23-2149241791.jpg",
|
src: "http://img.b2bpic.net/free-photo/elegant-uber-driver-giving-taxi-ride_23-2149241791.jpg", alt: "Client 1"},
|
||||||
alt: "Client 1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/bearded-young-man-casual-shirt-standing-with-laptop-hands_93675-134479.jpg",
|
src: "http://img.b2bpic.net/free-photo/bearded-young-man-casual-shirt-standing-with-laptop-hands_93675-134479.jpg", alt: "Client 2"},
|
||||||
alt: "Client 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/girl-sunglasses_1157-6308.jpg",
|
src: "http://img.b2bpic.net/free-photo/girl-sunglasses_1157-6308.jpg", alt: "Client 3"},
|
||||||
alt: "Client 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/small-business-manager-his-workshop_23-2149094576.jpg",
|
src: "http://img.b2bpic.net/free-photo/small-business-manager-his-workshop_23-2149094576.jpg", alt: "Client 4"},
|
||||||
alt: "Client 4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/side-view-woman-working-photography-studio_23-2150254633.jpg",
|
src: "http://img.b2bpic.net/free-photo/side-view-woman-working-photography-studio_23-2150254633.jpg", alt: "Client 5"},
|
||||||
alt: "Client 5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
ratingAnimation="slide-up"
|
ratingAnimation="slide-up"
|
||||||
avatarsAnimation="slide-up"
|
avatarsAnimation="slide-up"
|
||||||
@@ -217,14 +157,11 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "canvas-reveal",
|
variant: "canvas-reveal"}}
|
||||||
}}
|
|
||||||
text="Ready to experience the pinnacle of automotive engineering? Our team is ready to assist you."
|
text="Ready to experience the pinnacle of automotive engineering? Our team is ready to assist you."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Schedule Exclusive Visit",
|
text: "Schedule Exclusive Visit", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -234,29 +171,19 @@ export default function LandingPage() {
|
|||||||
logoText="ELITE AUTO"
|
logoText="ELITE AUTO"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Showcase",
|
title: "Showcase", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Vehicles",
|
label: "Vehicles", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Marques",
|
label: "Marques", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms of Service",
|
label: "Terms of Service", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user