Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 54f43fb594 | |||
| a56c74c628 | |||
| 348bdbdb92 | |||
| 910d4de87d |
@@ -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
64
src/app/pricing/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user