diff --git a/src/app/page.tsx b/src/app/page.tsx
index 013693d..87df426 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -29,18 +29,10 @@ export default function LandingPage() {
@@ -48,82 +40,21 @@ export default function LandingPage() {
@@ -133,28 +64,6 @@ export default function LandingPage() {
testimonial="Найсмачніший бограч в Ужгороді! Все дуже свіже, а атмосфера просто неймовірна."
rating={5}
author="Олена Мельник"
- avatars={[
- {
- src: "http://img.b2bpic.net/free-photo/front-view-bozbash-soup-kitchen-towel-wooden-spoon-nude-background-azerbaijani-cuisine-with-copy-space_140725-108384.jpg",
- alt: "Клієнт 1",
- },
- {
- src: "http://img.b2bpic.net/free-photo/polenta-with-vegetables-corn-grits-pizza-with-tomato-eggplant_2829-5754.jpg",
- alt: "Клієнт 2",
- },
- {
- src: "http://img.b2bpic.net/free-photo/fried-chicken-with-tomato-sliced-onions_140725-6153.jpg",
- alt: "Клієнт 3",
- },
- {
- src: "http://img.b2bpic.net/free-photo/front-view-cooked-meat-dumplings-with-different-ingredients-dark-background-vegetable-dish-meal-color-dough-dinner-pepper_140725-156876.jpg",
- alt: "Клієнт 4",
- },
- {
- src: "http://img.b2bpic.net/free-photo/local-food-meal-assortment_23-2148833773.jpg",
- alt: "Клієнт 5",
- },
- ]}
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
/>
@@ -167,42 +76,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
- {
- id: "1",
- name: "Бограч",
- price: "145 ₴",
- imageSrc: "http://img.b2bpic.net/free-photo/front-view-bozbash-soup-kitchen-towel-wooden-spoon-nude-background-azerbaijani-cuisine-with-copy-space_140725-108384.jpg",
- },
- {
- id: "2",
- name: "Банош",
- price: "120 ₴",
- imageSrc: "http://img.b2bpic.net/free-photo/polenta-with-vegetables-corn-grits-pizza-with-tomato-eggplant_2829-5754.jpg",
- },
- {
- id: "3",
- name: "М'ясо на мангалі",
- price: "210 ₴",
- imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-with-tomato-sliced-onions_140725-6153.jpg",
- },
- {
- id: "4",
- name: "Вареники",
- price: "95 ₴",
- imageSrc: "http://img.b2bpic.net/free-photo/front-view-cooked-meat-dumplings-with-different-ingredients-dark-background-vegetable-dish-meal-color-dough-dinner-pepper_140725-156876.jpg",
- },
- {
- id: "5",
- name: "Овочі гриль",
- price: "85 ₴",
- imageSrc: "http://img.b2bpic.net/free-photo/local-food-meal-assortment_23-2148833773.jpg",
- },
- {
- id: "6",
- name: "Сирники",
- price: "105 ₴",
- imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-sweet-pancakes-inside-red-plate-with-raspberries-black_140725-104752.jpg",
- },
+ { id: "1", name: "Бограч", price: "145 ₴", imageSrc: "http://img.b2bpic.net/free-photo/front-view-bozbash-soup-kitchen-towel-wooden-spoon-nude-background-azerbaijani-cuisine-with-copy-space_140725-108384.jpg" },
+ { id: "2", name: "Банош", price: "120 ₴", imageSrc: "http://img.b2bpic.net/free-photo/polenta-with-vegetables-corn-grits-pizza-with-tomato-eggplant_2829-5754.jpg" },
+ { id: "3", name: "М'ясо на мангалі", price: "210 ₴", imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-with-tomato-sliced-onions_140725-6153.jpg" },
]}
title="Наші хіти"
description="Оберіть свою улюблену страву прямо зараз"
@@ -214,20 +90,8 @@ export default function LandingPage() {
animationType="depth-3d"
textboxLayout="default"
useInvertedBackground={false}
- negativeCard={{
- items: [
- "Місце де немає природи",
- "Заморожені напівфабрикати",
- "Посередній сервіс",
- ],
- }}
- positiveCard={{
- items: [
- "Екологічна природа",
- "Свіжі продукти з ферми",
- "Професійні кухарі",
- ],
- }}
+ negativeCard={{ items: ["Місце де немає природи", "Заморожені напівфабрикати", "Посередній сервіс"] }}
+ positiveCard={{ items: ["Екологічна природа", "Свіжі продукти з ферми", "Професійні кухарі"] }}
title="Чому саме ми?"
description="Ми дбаємо про якість кожної поданої страви"
/>
@@ -237,21 +101,8 @@ export default function LandingPage() {
diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx
new file mode 100644
index 0000000..45908ba
--- /dev/null
+++ b/src/app/pricing/page.tsx
@@ -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 (
+
+
+
+
+
+
+
+
+
+ );
+}