Add src/app/signature-cocktails/page.tsx
This commit is contained in:
48
src/app/signature-cocktails/page.tsx
Normal file
48
src/app/signature-cocktails/page.tsx
Normal file
@@ -0,0 +1,48 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
|
||||
export default function SignatureCocktailsPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Начало", id: "/" },
|
||||
{ name: "История", id: "/story" },
|
||||
{ name: "Коктейли", id: "/signature-cocktails" },
|
||||
{ name: "Меню", id: "/" },
|
||||
{ name: "Галерия", id: "/" },
|
||||
{ name: "Контакти", id: "/" }
|
||||
]}
|
||||
brandName="La Habana Beach"
|
||||
/>
|
||||
<div className="pt-32 pb-20">
|
||||
<ProductCardOne
|
||||
title="Signature Cocktails"
|
||||
description="Потопете се в свят от екзотични вкусове с нашите авторски коктейли, създадени от майсторите в La Habana."
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="split-description"
|
||||
products={[
|
||||
{ id: "s1", name: "Havana Sunset", price: "16 лв", imageSrc: "http://img.b2bpic.net/free-photo/water-white-beverage-drink-party_1203-5572.jpg", imageAlt: "Havana Sunset" },
|
||||
{ id: "s2", name: "Tropical Storm", price: "18 лв", imageSrc: "http://img.b2bpic.net/free-photo/iced-drinking-cocktails-glass_1203-9892.jpg", imageAlt: "Tropical Storm" },
|
||||
{ id: "s3", name: "Beach Passion", price: "15 лв", imageSrc: "http://img.b2bpic.net/free-photo/summer-time-vibes-image-vacation-rest-summer-days_185193-110213.jpg", imageAlt: "Beach Passion" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<FooterBaseCard
|
||||
logoText="La Habana Beach"
|
||||
columns={[
|
||||
{ title: "Навигация", items: [{ label: "Начало", href: "/" }, { label: "История", href: "/story" }] },
|
||||
{ title: "Контакти", items: [{ label: "0888 123 456", href: "tel:0888123456" }] }
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user