17 Commits

Author SHA1 Message Date
f22083e0e0 Bob AI: use this image as a background for menu section 2026-02-17 15:41:11 +02:00
673704dd49 Bob AI: make stars in testimonials red 2026-02-17 15:31:48 +02:00
8af5c46a81 Bob AI: Move the heart icon to the right top corner of each testimon 2026-02-17 15:28:56 +02:00
be445d15aa Bob AI: it should be near stars 2026-02-17 15:27:18 +02:00
0bf636ffb9 Bob AI: Move the heart icon to the right top corner of each testimon 2026-02-17 15:26:13 +02:00
1d70770633 Bob AI: Add a red heart icon to each testimonial card in the Testimo 2026-02-17 15:24:45 +02:00
0c0ce0ff59 Bob AI: [Block: hero-billboard-gallery|Hero Billboard Gall... 2026-02-17 15:20:02 +02:00
5e68cbcf0b Bob AI: i dont like current hero 2026-02-17 15:17:17 +02:00
99e1dd1c91 Update src/app/page.tsx 2026-02-17 13:12:34 +00:00
3fa00374cb Bob AI: i dont like current hero 2026-02-17 15:10:09 +02:00
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
852e1fa01a Update src/app/page.tsx 2026-02-17 12:50:13 +00:00
4ad38afabe Bob AI: Add a new section using component BlogCardTwo. 1. Add import 2026-02-17 14:49:25 +02:00
c82e78e655 Bob AI: Add a new section using component BlogCardTwo. 1. Add import 2026-02-17 14:47:00 +02:00
426800990e Bob AI: make colors warm and soft 2026-02-17 14:44:47 +02:00
279283715d Merge version_1 into main
Merge version_1 into main
2026-02-17 12:41:19 +00:00
3 changed files with 33 additions and 25 deletions

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
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 ProductCardFour from '@/components/sections/product/ProductCardFour';
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 ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
export default function LandingPage() {
return (
@@ -39,17 +40,21 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroCentered
<HeroBillboardGallery
title="Хата Огню"
description="Authentic Ukrainian banquet experience. Family-owned restaurant celebrating culinary traditions, ethno-style elegance, and warm hospitality in a home-like setting."
description="Experience the warmth of traditional Ukrainian hospitality in a modern setting. Savor authentic dishes and cozy ambiance."
background={{ variant: "downward-rays-static" }}
avatars={[
{ src: "https://img.b2bpic.net/free-photo/full-shot-woman-getting-warmer-by-fire_23-2149172517.jpg", alt: "Fireplace interior" }
]}
buttons={[
{ text: "Book a Table", href: "contacts" },
{ text: "View Menu", href: "menu" }
{ label: "Book a Table", href: "contacts", dataWebildId: "book_table_button_1" },
{ label: "View Menu", href: "menu", dataWebildId: "view_menu_button_1" },
{ label: "Visit Us", href: "about", dataWebildId: "visit_us_button_1" }
]}
mediaItems={[
{ imageSrc: "https://img.b2bpic.net/free-photo/futuristic-moon-background_23-2150930890.jpg", imageAlt: "Futuristic Moon Background" },
{ imageSrc: "https://img.b2bpic.net/free-photo/futuristic-city-architecture_23-2151918947.jpg", imageAlt: "Futuristic City Architecture" },
{ imageSrc: "https://img.b2bpic.net/free-photo/beautiful-landscape-with-mountains_23-2151151078.jpg", imageAlt: "Mountain Landscape" }
]}
mediaAnimation="fade"
/>
</div>

View File

@@ -3,20 +3,20 @@
/* --vw is set by ThemeProvider */
/* --background: #f7f6f7;;
--card: #ffffff;;
--foreground: #0c1325;;
--primary-cta: #0798ff;;
--secondary-cta: #ffffff;;
--accent: #93c7ff;;
--background-accent: #a8cde8;; */
--card: #1e1e2f;;
--foreground: #e0e0e0;;
--primary-cta: #ffcc00;;
--secondary-cta: #33334d;;
--accent: #ff0000;;
--background-accent: #4d4d66;; */
--background: #f7f6f7;;
--card: #ffffff;;
--foreground: #0c1325;;
--primary-cta: #0798ff;;
--secondary-cta: #ffffff;;
--accent: #93c7ff;;
--background-accent: #a8cde8;;
--background: url('path/to/image.jpg');;
--card: #1e1e2f;;
--foreground: #e0e0e0;;
--primary-cta: #ffcc00;;
--secondary-cta: #33334d;;
--accent: #ff0000;;
--background-accent: #4d4d66;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -5,7 +5,7 @@ import CardStack from "@/components/cardStack/CardStack";
import TestimonialAuthor from "@/components/shared/TestimonialAuthor";
import { cls, shouldUseInvertedText } from "@/lib/utils";
import { useTheme } from "@/providers/themeProvider/ThemeProvider";
import { Quote, Star } from "lucide-react";
import { Heart, Quote, Star } from "lucide-react";
import type { LucideIcon } from "lucide-react";
import type { ButtonConfig, ButtonAnimationType, CardAnimationTypeWith3D, TitleSegment, TextboxLayout, InvertedBackground } from "@/components/cardStack/types";
@@ -115,9 +115,12 @@ const TestimonialCard = memo(({
<Quote className="h-6 w-auto text-accent fill-accent" strokeWidth={1.5} />
)}
<p className={cls("relative z-1 text-lg leading-[1.2]", shouldUseLightText ? "text-background" : "text-foreground", testimonialClassName)}>
{testimonial.testimonial}
</p>
<div className="relative">
<p className={cls("relative z-1 text-lg leading-[1.2]", shouldUseLightText ? "text-background" : "text-foreground", testimonialClassName)}>
{testimonial.testimonial}
</p>
<Heart className="absolute top-0 right-0 h-5 w-auto text-red-500" strokeWidth={1.5} />
</div>
</div>
<TestimonialAuthor