20 Commits

Author SHA1 Message Date
fb0d0fb581 Update src/app/page.tsx 2026-04-18 11:04:53 +00:00
b1ced18629 Update src/app/page.tsx 2026-04-18 11:02:13 +00:00
5a050530ed Update theme colors 2026-04-18 10:50:38 +00:00
a4dd275a05 Update theme colors 2026-04-18 10:49:20 +00:00
bcc4185261 Update theme colors 2026-04-18 10:48:53 +00:00
4d7dc30011 Update theme colors 2026-04-18 10:48:26 +00:00
808bca05d5 Update theme colors 2026-04-18 10:48:01 +00:00
33d57d60a1 Update theme colors 2026-04-18 10:47:44 +00:00
139dbf61b2 Update theme colors 2026-04-18 10:47:16 +00:00
e62c7a03fd Update theme colors 2026-04-18 10:46:49 +00:00
bcb6f3ca8c Update theme colors 2026-04-18 10:44:02 +00:00
bda2775da6 Update theme colors 2026-04-18 10:43:51 +00:00
74ee14bf18 Update theme colors 2026-04-18 10:43:32 +00:00
baf28443d7 Update theme colors 2026-04-18 10:43:22 +00:00
2d74ed5ed1 Update src/app/pricing/page.tsx 2026-04-18 10:40:00 +00:00
9fa211502c Add src/app/pricing/page.tsx 2026-04-18 10:39:36 +00:00
dce0f5bd25 Update src/app/page.tsx 2026-04-18 10:39:35 +00:00
374391ea1e Merge version_3 into main
Merge version_3 into main
2026-04-18 10:37:03 +00:00
6522e3be63 Merge version_2 into main
Merge version_2 into main
2026-04-18 10:36:47 +00:00
6bb1022565 Merge version_1 into main
Merge version_1 into main
2026-04-18 10:33:55 +00:00
3 changed files with 81 additions and 16 deletions

View File

@@ -31,12 +31,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Menu", id: "#menu" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "#contact" },
]}
brandName="Cosmic Crust"
brandName="Science Fiction Pizza "
/>
</div>
@@ -166,10 +167,10 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "About", href: "#about" }, { label: "Menu", href: "#menu" }, { label: "Privacy Policy", href: "#" }] },
{ items: [{ label: "About", href: "#about" }, { label: "Menu", href: "#menu" }, { label: "Pricing", href: "/pricing" }, { label: "Privacy Policy", href: "#" }] },
{ items: [{ label: "Contact", href: "#contact" }, { label: "Careers", href: "#" }, { label: "Locations", href: "#" }] }
]}
logoText="Cosmic Crust"
logoText="science fiction pizza "
/>
</div>
</ReactLenis>

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

@@ -0,0 +1,64 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="smallMedium"
sizing="medium"
background="blurBottom"
cardStyle="gradient-mesh"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#menu" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Cosmic Crust"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardTwo
title="Interstellar Membership Tiers"
description="Choose the flight path that best suits your caloric trajectory."
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
plans={[
{ id: "1", badge: "Cadet", price: "12 Credits", subtitle: "Essential planetary fuel", buttons: [{ text: "Select Plan", href: "#" }], features: ["Standard Crust", "Basic Toppings", "Sub-orbital Delivery"] },
{ id: "2", badge: "Captain", price: "35 Credits", subtitle: "Pro-level exploration", buttons: [{ text: "Select Plan", href: "#" }], features: ["Nebula-Infused Crust", "Premium Alien Ingredients", "Priority Drone Delivery", "Molecule Optimization"] },
{ id: "3", badge: "Admiral", price: "75 Credits", subtitle: "Total cosmic control", buttons: [{ text: "Select Plan", href: "#" }], features: ["Infinite Customization", "Quantum-Speed Delivery", "Personalized Flavor Mapping", "Direct Link to Command"] }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/#about" }, { label: "Menu", href: "/#menu" }, { label: "Pricing", href: "/pricing" }] },
{ items: [{ label: "Contact", href: "/#contact" }, { label: "Careers", href: "#" }, { label: "Locations", href: "#" }] }
]}
logoText="Cosmic Crust"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
--background: #f7f6f7;
--card: #ffffff;
--foreground: #0c1325;
--primary-cta: #0798ff;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta-text: #0c1325;
--accent: #93c7ff;
--background-accent: #a8cde8;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);