Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-04-18 08:42:19 +00:00
2 changed files with 67 additions and 0 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"
/>

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"
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>
);
}