Add src/app/pricing/page.tsx

This commit is contained in:
2026-04-09 17:00:53 +00:00
parent 2deebb7088
commit 1140f63ff6

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

@@ -0,0 +1,56 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import PricingCardNine from "@/components/sections/pricing/PricingCardNine";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="compact"
sizing="medium"
background="grid"
cardStyle="gradient-bordered"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Головна", id: "/" },
{ name: "Ціни", id: "/pricing" },
]}
brandName="Ресторан Татош"
/>
<div id="pricing" data-section="pricing">
<PricingCardNine
animationType="slide-up"
textboxLayout="default"
title="Наше меню та ціни"
description="Ознайомтеся з нашими актуальними пропозиціями"
plans={[
{ id: "1", title: "Сніданок", price: "95 ₴", period: "щодня", features: ["Сирники", "Кава", "Фрукти"], button: { text: "Вибрати" } },
{ id: "2", title: "Основне меню", price: "250 ₴", period: "щодня", features: ["Бограч", "Банош", "М'ясо на мангалі"], button: { text: "Вибрати" } },
{ id: "3", title: "Бенкетне меню", price: "600 ₴", period: "на особу", features: ["Повний набір страв", "Напої", "Обслуговування"], button: { text: "Вибрати" } },
]}
/>
</div>
<FooterBaseReveal
logoText="Татош"
columns={[
{ title: "Посилання", items: [{ label: "Головна", href: "/" }, { label: "Меню", href: "/#menu" }] }
]}
copyrightText="© 2024 Ресторан Татош. Всі права захищені."
/>
</ReactLenis>
</ThemeProvider>
);
}