8 Commits

Author SHA1 Message Date
6c7cec2183 Update src/app/page.tsx 2026-04-18 08:43:10 +00:00
3d24a6373e Merge version_2 into main
Merge version_2 into main
2026-04-18 08:42:42 +00:00
b2691e1a22 Update src/app/pricing/page.tsx 2026-04-18 08:42:39 +00:00
7cfa92e8fa Update src/app/page.tsx 2026-04-18 08:42:39 +00:00
73852bc462 Merge version_2 into main
Merge version_2 into main
2026-04-18 08:42:18 +00:00
28670178a4 Add src/app/pricing/page.tsx 2026-04-18 08:42:15 +00:00
8dcc131c87 Update src/app/page.tsx 2026-04-18 08:42:15 +00:00
44ae763477 Merge version_1 into main
Merge version_1 into main
2026-04-18 08:38:32 +00:00
2 changed files with 70 additions and 3 deletions

View File

@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "Vault", id: "features" },
{ name: "Checklist", id: "checklist" },
{ name: "Community", id: "community" },
{ name: "Pricing", id: "/pricing" },
]}
brandName="HW Tracker"
/>
@@ -44,7 +45,7 @@ export default function LandingPage() {
<HeroSplitDoubleCarousel
background={{ variant: "plain" }}
title="Log Your Latest Find"
description="Your virtual garage, anywhere, anytime. Track every car in your collection with high-octane precision."
description="Protect and grow your collection value with real-time auction data and automated tracking tools."
leftCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/black-white-photo-room-with-neon-lights_250224-154.jpg", imageAlt: "Garage View 1" },
{ imageSrc: "http://img.b2bpic.net/free-photo/people-vehicle-dealership-buying-new-car_342744-749.jpg", imageAlt: "Garage View 2" },
@@ -172,7 +173,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/futuristic-gallery-space-with-illuminated-platform_23-2151986965.jpg"
imageSrc="http://img.b2bpic.net/free-photo/futuristic-gallery-space-with-illuminated-platform_23-2151986965.jpg?_wi=1"
logoText="HW Tracker"
columns={[
{ title: "Tracker", items: [{ label: "Dashboard", href: "#" }, { label: "Vault", href: "#" }] },
@@ -184,4 +185,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

66
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,66 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="compact"
sizing="largeSmallSizeMediumTitles"
background="floatingGradient"
cardStyle="glass-elevated"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Dashboard", id: "hero" },
{ name: "Vault", id: "features" },
{ name: "Checklist", id: "checklist" },
{ name: "Community", id: "community" },
{ name: "Pricing", id: "/pricing" },
]}
brandName="HW Tracker"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
animationType="slide-up"
textboxLayout="split"
title="Choose Your Plan"
description="Flexible plans for every type of collector."
useInvertedBackground={false}
plans={[
{ id: "free", badge: "Basic", price: "$0", subtitle: "For casual hobbyists", features: ["Up to 50 models", "Basic tracking", "Community access"] },
{ id: "pro", badge: "Pro", price: "$9/mo", subtitle: "For serious collectors", features: ["Unlimited models", "Real-time market trends", "Advanced analytics", "Priority support"] },
{ id: "expert", badge: "Expert", price: "$19/mo", subtitle: "For professional dealers", features: ["Everything in Pro", "Inventory export", "Bulk edit tools", "Unlimited vault storage"] }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/futuristic-gallery-space-with-illuminated-platform_23-2151986965.jpg?_wi=2"
logoText="HW Tracker"
columns={[
{ title: "Tracker", items: [{ label: "Dashboard", href: "#" }, { label: "Vault", href: "#" }] },
{ title: "Market", items: [{ label: "Trends", href: "#" }, { label: "Most Wanted", href: "#" }] },
{ title: "Support", items: [{ label: "Help", href: "#" }, { label: "Privacy", href: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}