diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index d1033a7..1c8538f 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -34,6 +34,7 @@ export default function BlogPage() { { name: "Меню", id: "/#menu" }, { name: "Банкети", id: "/#banquets" }, { name: "Доставка", id: "/#delivery" }, + { name: "Відгуки", id: "/#testimonials" }, { name: "Контакти", id: "/#contacts" } ]} button={{ text: "Забронювати Столик", href: "/#contacts" }} @@ -73,6 +74,7 @@ export default function BlogPage() { ]}, { items: [ { label: "Доставка", href: "/#delivery" }, + { label: "Відгуки", href: "/#testimonials" }, { label: "Блог", href: "/blog" }, { label: "Магазин", href: "/shop" }, { label: "Контакти", href: "/#contacts" }, diff --git a/src/app/page.tsx b/src/app/page.tsx index 52b0427..23b82fc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,6 +6,7 @@ import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import { Mail } from 'lucide-react'; @@ -34,6 +35,7 @@ export default function LandingPage() { { name: "Меню", id: "/#menu" }, { name: "Банкети", id: "/#banquets" }, { name: "Доставка", id: "/#delivery" }, + { name: "Відгуки", id: "/#testimonials" }, { name: "Контакти", id: "/#contacts" } ]} button={{ text: "Забронювати Столик", href: "/#contacts" }} @@ -83,12 +85,12 @@ export default function LandingPage() { @@ -146,6 +148,22 @@ export default function LandingPage() { /> +
+ +
+
setCartOpen(true) }, @@ -88,7 +89,7 @@ export default function ProductPage({ params }: ProductPageProps) { logoText: "Бандура: Серце і Зала", columns: [ { items: [{ label: "Філософія", href: "/#philosophy" }, { label: "Меню", href: "/#menu" }, { label: "Банкети", href: "/#banquets" }] }, - { items: [{ label: "Доставка", href: "/#delivery" }, { label: "Блог", href: "/blog" }, { label: "Магазин", href: "/shop" }, { label: "Контакти", href: "/#contacts" }, { label: "Забронювати Столик", href: "/#contacts" }] } + { items: [{ label: "Доставка", href: "/#delivery" }, { label: "Відгуки", href: "/#testimonials" }, { label: "Блог", href: "/blog" }, { label: "Магазин", href: "/shop" }, { label: "Контакти", href: "/#contacts" }, { label: "Забронювати Столик", href: "/#contacts" }] } ], ariaLabel: "Нижній колонтитул сайту", containerClassName: "py-16 md:py-24" diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index f06f414..d5ed1ae 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -25,6 +25,7 @@ export default function ShopPage() { { name: "Меню", id: "/#menu" }, { name: "Банкети", id: "/#banquets" }, { name: "Доставка", id: "/#delivery" }, + { name: "Відгуки", id: "/#testimonials" }, { name: "Контакти", id: "/#contacts" } ], button: { text: "Кошик", onClick: () => console.log('Cart button clicked on catalog page') }, @@ -38,7 +39,7 @@ export default function ShopPage() { logoText: "Бандура: Серце і Зала", columns: [ { items: [{ label: "Філософія", href: "/#philosophy" }, { label: "Меню", href: "/#menu" }, { label: "Банкети", href: "/#banquets" }] }, - { items: [{ label: "Доставка", href: "/#delivery" }, { label: "Блог", href: "/blog" }, { label: "Магазин", href: "/shop" }, { label: "Контакти", href: "/#contacts" }, { label: "Забронювати Столик", href: "/#contacts" }] } + { items: [{ label: "Доставка", href: "/#delivery" }, { label: "Відгуки", href: "/#testimonials" }, { label: "Блог", href: "/blog" }, { label: "Магазин", href: "/shop" }, { label: "Контакти", href: "/#contacts" }, { label: "Забронювати Столик", href: "/#contacts" }] } ], ariaLabel: "Нижній колонтитул сайту", containerClassName: "py-16 md:py-24"