2 Commits

Author SHA1 Message Date
8371bf1a60 Bob AI: i dont like current hero 2026-02-17 15:02:33 +02:00
64a1cc8db3 Bob AI: i dont like current hero 2026-02-17 14:53:06 +02:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroCentered from '@/components/sections/hero/HeroCentered'; import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout'; import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
@@ -10,6 +10,7 @@ import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -39,16 +40,20 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCentered <HeroBillboardCarousel
title="Хата Огню" title="Хата Огню"
description="Authentic Ukrainian banquet experience. Family-owned restaurant celebrating culinary traditions, ethno-style elegance, and warm hospitality in a home-like setting." description="Добро пожаловать в уютный уголок традиционной украинской гостеприимства. Насладитесь аутентичными блюдами и запоминающимся ужином."
background={{ variant: "downward-rays-static" }} background={{ variant: "downward-rays-animated" }}
avatars={[
{ src: "https://img.b2bpic.net/free-photo/full-shot-woman-getting-warmer-by-fire_23-2149172517.jpg", alt: "Fireplace interior" }
]}
buttons={[ buttons={[
{ text: "Book a Table", href: "contacts" }, { label: "Забронировать стол", href: "contacts", dataWebildId: "book_table_button_new" },
{ text: "View Menu", href: "menu" } { label: "Посмотреть меню", href: "menu", dataWebildId: "view_menu_button_new" },
{ label: "Посетить нас", href: "about", dataWebildId: "visit_us_button_new" }
]}
mediaItems={[
{ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "Уютный интерьер хаты" },
{ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "Традиционное украинское блюдо" },
{ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "Семейное общение" },
{ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "Каминный зал" }
]} ]}
/> />
</div> </div>