From a27452c2acf5538026afe6c75481b36b00bd14a9 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 27 Apr 2026 22:28:54 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 180 ++++++++--------------------------------------- 1 file changed, 31 insertions(+), 149 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 076fc66..17de4c0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,8 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS import ProductCardFour from '@/components/sections/product/ProductCardFour'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { MapPin, Wallet, Wine } from "lucide-react"; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import { MapPin, Wallet, Wine, Star } from "lucide-react"; export default function LandingPage() { return ( @@ -31,16 +32,12 @@ export default function LandingPage() { -
- +
@@ -100,107 +81,24 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} products={[ - { - id: "1", name: "Нигири из краба с копченым угрём", price: "85 000 сўм", variant: "90 г", imageSrc: "http://img.b2bpic.net/free-photo/mussels-cream-sauce-served-with-green-salad_140725-5873.jpg"}, - { - id: "2", name: "Тартар из говяжьей вырезки", price: "98 000 сўм", variant: "170 г", imageSrc: "http://img.b2bpic.net/free-photo/beef-steak-tartar-still-life_23-2150655691.jpg"}, - { - id: "3", name: "Куриный шницель", price: "85 000 сўм", variant: "250 г", imageSrc: "http://img.b2bpic.net/free-photo/bass-fish-dish-arrangement_23-2148950226.jpg"}, - { - id: "4", name: "Тако с курицей и томатной сальсой", price: "65 000 сўм", variant: "140 г", imageSrc: "http://img.b2bpic.net/free-photo/top-view-mexican-dish-with-wooden-background_23-2148283082.jpg"}, - { - id: "5", name: "Филе-миньон", price: "180 000 сўм", variant: "330 г", imageSrc: "http://img.b2bpic.net/free-photo/well-done-t-bone-steak-pineapple_140725-7536.jpg"}, - { - id: "6", name: "Картофель фри с пармезаном", price: "45 000 сўм", variant: "125 г", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-eating-beef-salad-with-lettuce-tomato-sauce_140725-1995.jpg"}, + { id: "1", name: "Нигири из краба", price: "85 000 сўм", variant: "90 г", imageSrc: "http://img.b2bpic.net/free-photo/mussels-cream-sauce-served-with-green-salad_140725-5873.jpg" }, + { id: "2", name: "Тартар из говядины", price: "98 000 сўм", variant: "170 г", imageSrc: "http://img.b2bpic.net/free-photo/beef-steak-tartar-still-life_23-2150655691.jpg" }, ]} title="Наши блюда" description="Попробуйте наши лучшие позиции, созданные из отборных ингредиентов." /> -
- -
- -
- -
- -
- -
-
@@ -210,24 +108,8 @@ export default function LandingPage() { imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9ld8v0" logoText="Just Wine" columns={[ - { - title: "Меню", items: [ - { - label: "Наши блюда", href: "#menu"}, - ], - }, - { - title: "Контакты", items: [ - { - label: "+998 90 043 59 99", href: "tel:+998900435999"}, - ], - }, - { - title: "Адрес", items: [ - { - label: "Ташкент, ул. Матбуотчилар, 17", href: "#"}, - ], - }, + { title: "Навигация", items: [{ label: "Залы", href: "#rooms" }, { label: "Меню", href: "#menu" }] }, + { title: "Контакты", items: [{ label: "+998 90 043 59 99", href: "tel:+998900435999" }] } ]} copyrightText="© 2025 Just Wine. Все права защищены." /> -- 2.49.1