37 Commits

Author SHA1 Message Date
b5695bb409 Merge version_23 into main
Merge version_23 into main
2026-04-18 13:28:19 +00:00
61ce2965df Update theme fonts 2026-04-18 13:28:16 +00:00
ad6ba6a651 Update theme fonts 2026-04-18 13:28:16 +00:00
93c6d89f7f Merge version_23 into main
Merge version_23 into main
2026-04-18 13:27:02 +00:00
8c31ffba45 Update theme colors 2026-04-18 13:26:56 +00:00
52ffe3ef46 Merge version_22 into main
Merge version_22 into main
2026-04-18 13:26:11 +00:00
d18e588912 Update theme colors 2026-04-18 13:26:08 +00:00
17a0afe1bd Merge version_21 into main
Merge version_21 into main
2026-04-18 13:24:52 +00:00
bb73cb4675 Update theme colors 2026-04-18 13:24:49 +00:00
11ec1dcb5a Merge version_20 into main
Merge version_20 into main
2026-04-18 13:15:37 +00:00
4863cbb24c Update src/app/page.tsx 2026-04-18 13:15:34 +00:00
4cf35d9440 Merge version_20 into main
Merge version_20 into main
2026-04-18 13:10:20 +00:00
9a6b51d5c8 Update src/app/page.tsx 2026-04-18 13:10:14 +00:00
f07f614c33 Merge version_20 into main
Merge version_20 into main
2026-04-18 12:57:22 +00:00
981a1edbed Update src/app/page.tsx 2026-04-18 12:57:19 +00:00
39f12eccfb Merge version_20 into main
Merge version_20 into main
2026-04-18 11:16:22 +00:00
33522151dc Update src/app/pricing/page.tsx 2026-04-18 11:16:19 +00:00
ac3bca4b36 Update src/app/page.tsx 2026-04-18 11:16:19 +00:00
06224cb17b Update src/app/menu/page.tsx 2026-04-18 11:16:18 +00:00
df2f25be5f Merge version_19 into main
Merge version_19 into main
2026-04-18 11:06:01 +00:00
de7f77ec37 Update src/app/pricing/page.tsx 2026-04-18 11:05:58 +00:00
3a5261e58a Update src/app/page.tsx 2026-04-18 11:05:57 +00:00
6379a59b8d Add src/app/menu/page.tsx 2026-04-18 11:05:57 +00:00
37ba90783c Merge version_16 into main
Merge version_16 into main
2026-04-18 11:04:56 +00:00
fb0d0fb581 Update src/app/page.tsx 2026-04-18 11:04:53 +00:00
23262dcef0 Merge version_16 into main
Merge version_16 into main
2026-04-18 11:02:19 +00:00
b1ced18629 Update src/app/page.tsx 2026-04-18 11:02:13 +00:00
55d500eb1a Switch to version 16: modified src/app/styles/variables.css 2026-04-18 10:59:40 +00:00
d6455123ad Switch to version 16: modified src/app/page.tsx 2026-04-18 10:59:39 +00:00
93a2129580 Merge version_18 into main
Merge version_18 into main
2026-04-18 10:59:07 +00:00
ae57b326a5 Update src/app/styles/variables.css 2026-04-18 10:59:04 +00:00
7ca7527463 Update src/app/page.tsx 2026-04-18 10:59:04 +00:00
a1d47caa09 Switch to version 16: remove src/app/menu/page.tsx 2026-04-18 10:55:56 +00:00
a472036aab Switch to version 16: remove src/app/checkout/page.tsx 2026-04-18 10:55:56 +00:00
c3f323f691 Switch to version 16: remove src/app/cart/page.tsx 2026-04-18 10:55:55 +00:00
e8a0a5838f Switch to version 16: modified src/app/page.tsx 2026-04-18 10:55:55 +00:00
3ed16e4a94 Merge version_17 into main
Merge version_17 into main
2026-04-18 10:55:14 +00:00
7 changed files with 85 additions and 174 deletions

View File

@@ -1,43 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import ProductCartItem from '@/components/ecommerce/cart/ProductCartItem';
import { useState } from 'react';
export default function CartPage() {
const [cartItems, setCartItems] = useState([
{ id: "1", name: "Supernova Margherita", price: "24", quantity: 1, imageSrc: "http://img.b2bpic.net/free-photo/close-up-street-food-neon-light_23-2151571778.jpg" }
]);
const handleRemove = (id: string) => setCartItems(cartItems.filter(i => i.id !== id));
return (
<ThemeProvider borderRadius="soft" contentWidth="medium" background="blurBottom">
<ReactLenis root>
<NavbarStyleApple
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/#about" }, { name: "Menu", id: "/#menu" }, { name: "Cart", id: "/cart" }]}
brandName="Cosmic Crust"
/>
<main className="py-24 px-6">
<h1 className="text-4xl font-bold mb-8">Your Cart</h1>
<div className="space-y-4">
{cartItems.map(item => (
<ProductCartItem key={item.id} item={{ ...item, price: item.price + " Credits" }} onRemove={handleRemove} />
))}
{cartItems.length === 0 && <p>Your cart is empty.</p>}
</div>
<div className="mt-8 flex justify-end">
<a href="/checkout" className="px-6 py-3 bg-primary text-white rounded-full">Proceed to Checkout</a>
</div>
</main>
<FooterLogoEmphasis
columns={[{ items: [{ label: "Home", href: "/" }] }]}
logoText="Cosmic Crust"
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -1,44 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function CheckoutPage() {
return (
<ThemeProvider borderRadius="soft" contentWidth="medium" background="blurBottom">
<ReactLenis root>
<NavbarStyleApple
navItems={[{ name: "Home", id: "/" }, { name: "Cart", id: "/cart" }, { name: "Checkout", id: "/checkout" }]}
brandName="Cosmic Crust"
/>
<main className="py-24 px-6">
<h1 className="text-4xl font-bold mb-8">Checkout</h1>
<div className="grid grid-cols-1 md:grid-cols-2 gap-12">
<div>
<h2 className="text-2xl font-semibold mb-4">Shipping Information</h2>
<form className="space-y-4">
<input type="text" placeholder="Full Name" className="w-full p-3 border rounded" />
<input type="email" placeholder="Email Address" className="w-full p-3 border rounded" />
<textarea placeholder="Shipping Address" className="w-full p-3 border rounded" />
</form>
</div>
<div>
<h2 className="text-2xl font-semibold mb-4">Order Summary</h2>
<div className="bg-gray-100 p-6 rounded">
<div className="flex justify-between py-2"><span>Subtotal</span><span>24 Credits</span></div>
<div className="flex justify-between py-2 border-t font-bold"><span>Total</span><span>24 Credits</span></div>
<button className="w-full mt-6 py-3 bg-primary text-white rounded-full">Complete Order</button>
</div>
</div>
</div>
</main>
<FooterLogoEmphasis
columns={[{ items: [{ label: "Home", href: "/" }] }]}
logoText="Cosmic Crust"
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -20,6 +20,7 @@ export const metadata: Metadata = {
},
};
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],

View File

@@ -2,8 +2,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function MenuPage() {
@@ -22,43 +22,44 @@ export default function MenuPage() {
>
<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"
/>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/menu" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Science Fiction Pizza "
/>
</div>
<div id="menu" data-section="menu" className="py-20">
<ProductCardTwo
animationType="blur-reveal"
textboxLayout="split"
gridVariant="asymmetric-60-wide-40-narrow"
useInvertedBackground={false}
title="The Galactic Menu"
description="Explore our range of futuristic pizzas."
products={[
{ id: "1", brand: "Classic", name: "Nebula Margherita", price: "24 CAD", rating: 5, reviewCount: "10k+", imageSrc: "http://img.b2bpic.net/free-photo/close-up-street-food-neon-light_23-2151571778.jpg" },
{ id: "2", brand: "Premium", name: "Titan Pepperoni", price: "28 CAD", rating: 4, reviewCount: "8k+", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-indoors_23-2150901007.jpg" }
]}
/>
<div id="menu" data-section="menu">
<ProductCardTwo
animationType="blur-reveal"
textboxLayout="split"
gridVariant="asymmetric-60-wide-40-narrow"
useInvertedBackground={false}
products={[
{ id: "1", brand: "Cosmic", name: "Supernova Margherita", price: "24 CAD", rating: 5, reviewCount: "10k+", imageSrc: "http://img.b2bpic.net/free-photo/close-up-street-food-neon-light_23-2151571778.jpg", imageAlt: "sci-fi futuristic pizza" },
{ id: "2", brand: "Cosmic", name: "Titan Pepperoni Blast", price: "28 CAD", rating: 4, reviewCount: "8k+", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-indoors_23-2150901007.jpg", imageAlt: "cyberpunk style food" },
{ id: "3", brand: "Cosmic", name: "Nebula Mushroom Delight", price: "26 CAD", rating: 5, reviewCount: "5k+", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-3d-alien-world_23-2151879021.jpg", imageAlt: "gourmet alien food" }
]}
title="Our Galactic Menu"
description="Savor the best flavors from across the galaxy in Canadian dollars."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ 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"
/>
<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="Science Fiction Pizza "
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
@@ -32,12 +32,12 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Menu", id: "#menu" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/menu" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Cosmic Crust"
brandName="Science Fiction Pizza "
/>
</div>
@@ -47,14 +47,22 @@ export default function LandingPage() {
title="Pizza from the Edge of the Galaxy"
description="Experience quantum-leavened crusts and nebula-infused ingredients delivered from the stars to your plate."
leftCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-street-food-neon-light_23-2151571655.jpg", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "http://img.b2bpic.net/free-photo/futuristic-spaceship-corridor-with-glowing-yellow-neon-lights-generative-ai_191095-1744.jpg", imageAlt: "sci-fi spaceship interior" }
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776516710484-pey6gnqm.png", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776516855837-l7oybj6c.jpg", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776516921864-yroqzu7h.png", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776516705188-v91ywq4e.jpg", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776516691421-ldm2b4ik.jpg", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776516246545-wk7i0yt5.png", imageAlt: "sci-fi spaceship interior" }
]}
rightCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-street-food-neon-light_23-2151571790.jpg", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-street-food-neon-light_23-2151571682.jpg", imageAlt: "sci-fi spaceship interior" }
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776516276960-wpa1naar.png", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776516874613-fcyruqvo.png", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776516287655-q3ahiwhq.png", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776516867816-37f4h8ha.png", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776516884081-zgdkiy7f.jpg", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776516728090-vomonuau.jpg", imageAlt: "sci-fi spaceship interior" }
]}
buttons={[{ text: "Order Interstellar", href: "#menu" }]}
buttons={[{ text: "Order Interstellar", href: "/menu" }]}
/>
</div>
@@ -69,21 +77,6 @@ export default function LandingPage() {
/>
</div>
<div id="menu" data-section="menu">
<ProductCardTwo
animationType="blur-reveal"
textboxLayout="split"
gridVariant="asymmetric-60-wide-40-narrow"
useInvertedBackground={false}
products={[
{ id: "1", brand: "Cosmic", name: "Supernova Margherita", price: "24 Credits", rating: 5, reviewCount: "10k+", imageSrc: "http://img.b2bpic.net/free-photo/close-up-street-food-neon-light_23-2151571778.jpg", imageAlt: "sci-fi futuristic pizza" },
{ id: "2", brand: "Cosmic", name: "Titan Pepperoni Blast", price: "28 Credits", rating: 4, reviewCount: "8k+", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-indoors_23-2150901007.jpg", imageAlt: "cyberpunk style food" }
]}
title="Galactic Specials"
description="Our signature pizzas from the deepest sectors of the culinary universe."
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwentyNine
animationType="slide-up"
@@ -91,8 +84,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
features={[
{ title: "Laser Ovens", description: "Precision cooking at 4000 degrees.", imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-interior-design_23-2151821280.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/futuristic-kitchen-interior-design_23-2151821284.jpg", buttonText: "See Tech" },
{ title: "Drone Delivery", description: "Sub-orbital delivery in under 5 minutes.", imageSrc: "http://img.b2bpic.net/free-photo/adult-person-interacting-with-futuristic-delivery-robot_23-2151210956.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/cyberpunk-city-street-night-with-neon-lights-futuristic-aesthetic_23-2151488733.jpg", buttonText: "See Tech" }
{ title: "Laser Ovens", description: "Precision cooking at 4000 degrees.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776517302994-mk2jm4ez.png", titleImageSrc: "http://img.b2bpic.net/free-photo/futuristic-kitchen-interior-design_23-2151821284.jpg", buttonText: "See Tech" },
{ title: "Fast Delivery", description: "Sub-orbital delivery in under 5 minutes.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776517506611-cfbysna6.png", titleImageSrc: "http://img.b2bpic.net/free-photo/cyberpunk-city-street-night-with-neon-lights-futuristic-aesthetic_23-2151488733.jpg", buttonText: "See Tech" },
{ title: "Nano-Ingredients", description: "Molecularly optimized nutrition and taste.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776517513122-ahw0ys9p.png", titleImageSrc: "http://img.b2bpic.net/free-photo/person-using-ar-technology-their-daily-occupation_23-2151137301.jpg", buttonText: "See Tech" }
]}
title="Quantum Culinary Tech"
description="Technological advancements that ensure every slice reaches peak cosmic flavor."
@@ -104,8 +98,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
{ id: "1", title: "Best Pizza in Sector 7", quote: "The Supernova Margherita is genuinely stellar. I order it every cycle.", name: "Zax the Cyborg", role: "Explorer", imageSrc: "http://img.b2bpic.net/free-photo/teenager-light-movie-projector_23-2149489842.jpg" },
{ id: "2", title: "Speedy Delivery", quote: "Drone arrived exactly as my thrusters cooled down. Perfectly hot.", name: "Captain Vega", role: "Pilot", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-mature-woman-having-fun-time_23-2149232843.jpg" }
{ id: "1", title: "Best Pizza in Sector 7", quote: "The Supernova Margherita is genuinely stellar. I order it every cycle.", name: "Zax the Cyborg", role: "Explorer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776517626313-8v8aofcn.png" },
{ id: "2", title: "Speedy Delivery", quote: "Drone arrived exactly as my thrusters cooled down. Perfectly hot.", name: "Captain Vega", role: "Pilot", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-mature-woman-having-fun-time_23-2149232843.jpg" },
{ id: "3", title: "Lab Tested Quality", quote: "The ingredients are molecularly perfect. A triumph of taste.", name: "Dr. Aris", role: "Scientist", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-with-delicious-pizza_23-2150873888.jpg" }
]}
title="Interstellar Feedback"
description="Don't just take our word for it—listen to our planetary pioneers."
@@ -119,7 +114,8 @@ export default function LandingPage() {
useInvertedBackground={true}
metrics={[
{ id: "1", value: "1M+", title: "Pizzas Delivered", description: "Across multiple systems", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-anime-style-pizza_23-2151061958.jpg" },
{ id: "2", value: "42", title: "Ingredients", description: "Sourced from 42 planets", imageSrc: "http://img.b2bpic.net/free-photo/assortment-healthy-vegetarian-food_23-2148908746.jpg" }
{ id: "2", value: "42", title: "Ingredients", description: "Sourced from 42 planets", imageSrc: "http://img.b2bpic.net/free-photo/assortment-healthy-vegetarian-food_23-2148908746.jpg" },
{ id: "3", value: "99.9%", title: "Arrival Precision", description: "Sub-orbital accuracy", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776517645078-4cm9hrh1.png" }
]}
title="Space-Age Stats"
description="Quantifying our journey through the culinary cosmos."
@@ -132,9 +128,10 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{ id: "1", title: "Do you deliver to Mars?", content: "Yes, standard sub-orbital rates apply." },
{ id: "2", title: "Are ingredients organic?", content: "We use bio-engineered, optimized nutrients." }
{ id: "2", title: "Are ingredients organic?", content: "We use bio-engineered, optimized nutrients." },
{ id: "3", title: "Can I request custom toppings?", content: "Custom atomic arrangements are available." }
]}
imageSrc="http://img.b2bpic.net/free-photo/representations-user-experience-interface-design_23-2150038903.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CWjkRLYXDebCjctgTj17cHc4m1/uploaded-1776518088091-hd3w06vg.png"
mediaAnimation="slide-up"
faqsAnimation="blur-reveal"
title="Quantum Inquiries"
@@ -143,22 +140,21 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Canadian Support"
title="Need a slice of home?"
description="Our Canadian team is ready to serve you from our local base. Call +1 (555) 123-4567 or visit our Vancouver hub."
buttons={[{ text: "Call Now", href: "tel:+15551234567" }]}
background={{ variant: "plain" }}
<ContactText
useInvertedBackground={true}
background={{ variant: "sparkles-gradient" }}
text="Ready to launch your appetite into orbit? Signal our command center for reservations or delivery orders."
buttons={[{ text: "Contact Command", href: "mailto:orders@cosmiccrust.space" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ 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: "#" }] }
{ items: [{ label: "Home", href: "/" }, { 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>

View File

@@ -26,7 +26,7 @@ export default function PricingPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#menu" },
{ name: "Menu", id: "/menu" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/#contact" },
]}
@@ -42,9 +42,9 @@ export default function PricingPage() {
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"] }
{ id: "1", badge: "Cadet", price: "12 CAD", subtitle: "Essential planetary fuel", buttons: [{ text: "Select Plan", href: "#" }], features: ["Standard Crust", "Basic Toppings", "Sub-orbital Delivery"] },
{ id: "2", badge: "Captain", price: "35 CAD", 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 CAD", subtitle: "Total cosmic control", buttons: [{ text: "Select Plan", href: "#" }], features: ["Infinite Customization", "Quantum-Speed Delivery", "Personalized Flavor Mapping", "Direct Link to Command"] }
]}
/>
</div>
@@ -52,7 +52,7 @@ export default function PricingPage() {
<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: "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"

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--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;
--background: #ffffff;
--card: #fafafa;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #b3d25f;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);