6 Commits

Author SHA1 Message Date
30b76f945c Merge version_3 into main
Merge version_3 into main
2026-05-14 01:22:15 +00:00
54f43fb594 Update src/app/pricing/page.tsx 2026-05-14 01:22:09 +00:00
b7ffb787fd Merge version_3 into main
Merge version_3 into main
2026-05-14 01:21:42 +00:00
a56c74c628 Add src/app/pricing/page.tsx 2026-05-14 01:21:38 +00:00
348bdbdb92 Update src/app/page.tsx 2026-05-14 01:21:38 +00:00
910d4de87d Merge version_2 into main
Merge version_2 into main
2026-05-14 01:18:44 +00:00
2 changed files with 68 additions and 3 deletions

View File

@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Pricing", id: "/pricing" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
@@ -101,7 +102,7 @@ export default function LandingPage() {
{ id: "2", name: "Classic Fries", price: "$5.99", imageSrc: "http://img.b2bpic.net/free-photo/long-chicken-sandwich-with-pickled-cucumber-tomato-cheese-served-with-fries-sauce_141793-2252.jpg" },
{ id: "3", name: "Vanilla Shake", price: "$7.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-table-still-life_23-2150751964.jpg" },
]}
title="Menu Classics"
title="Signature 90's Favorites"
description="Our signature dishes cooked just right."
/>
</div>
@@ -160,7 +161,7 @@ export default function LandingPage() {
<FooterBaseCard
logoText="The 90's"
columns={[
{ title: "Quick Links", items: [{ label: "About", href: "#about" }, { label: "Menu", href: "#menu" }] },
{ title: "Quick Links", items: [{ label: "About", href: "#about" }, { label: "Menu", href: "#menu" }, { label: "Pricing", href: "/pricing" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
/>
@@ -168,4 +169,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

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 NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="compact"
sizing="mediumSizeLargeTitles"
background="floatingGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
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: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
]}
brandName="The 90's"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
title="Our Packages"
description="Choose the perfect dining experience for your group."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
plans={[
{ id: "standard", badge: "Starter", price: "$45", subtitle: "Best for couples", buttons: [{ text: "Book Now", href: "/contact" }], features: ["2 Course Meal", "Retro Drinks", "Arcade Credits"] },
{ id: "premium", badge: "Vibe Master", price: "$85", subtitle: "Best for groups", buttons: [{ text: "Book Now", href: "/contact" }], features: ["3 Course Meal", "Retro Drinks", "Arcade Credits", "VIP Table"] },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="The 90's"
columns={[
{ title: "Quick Links", items: [{ label: "About", href: "/about" }, { label: "Menu", href: "/menu" }, { label: "Pricing", href: "/pricing" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}