115 lines
7.5 KiB
TypeScript
115 lines
7.5 KiB
TypeScript
"use client";
|
||
|
||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||
import ReactLenis from "lenis/react";
|
||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||
|
||
const unifiedNavItems = [
|
||
{ name: "Ana Sayfa", id: "/" },
|
||
{ name: "Hakkımızda", id: "/#about" },
|
||
{ name: "Menü", id: "/menu" },
|
||
{ name: "Galeri", id: "/#gallery" },
|
||
{ name: "Blog", id: "/#blog" },
|
||
{ name: "İletişim", id: "/#contact" }
|
||
];
|
||
|
||
const unifiedFooterColumns = [
|
||
{
|
||
title: "Hızlı Bağlantılar", items: [
|
||
{ label: "Hakkımızda", href: "/#about" },
|
||
{ label: "Menü", href: "/menu" },
|
||
{ label: "Galeri", href: "/#gallery" },
|
||
{ label: "Blog", href: "/#blog" }
|
||
]
|
||
},
|
||
{
|
||
title: "Bize Ulaşın", items: [
|
||
{ label: "Adres: Kuzey Kıbrıs, XYZ Cad. No:123", href: "https://maps.app.goo.gl/example" },
|
||
{ label: "Telefon: +90 5XX XXX XX XX", href: "tel:+905XX XXX XX XX" },
|
||
{ label: "Email: info@kumdakahve.com", href: "mailto:info@kumdakahve.com" }
|
||
]
|
||
},
|
||
{
|
||
title: "Yasal", items: [
|
||
{ label: "Gizlilik Politikası", href: "#" },
|
||
{ label: "Kullanım Şartları", href: "#" }
|
||
]
|
||
}
|
||
];
|
||
|
||
export default function MenuPage() {
|
||
return (
|
||
<ThemeProvider
|
||
defaultButtonVariant="text-stagger"
|
||
defaultTextAnimation="reveal-blur"
|
||
borderRadius="soft"
|
||
contentWidth="small"
|
||
sizing="large"
|
||
background="aurora"
|
||
cardStyle="subtle-shadow"
|
||
primaryButtonStyle="radial-glow"
|
||
secondaryButtonStyle="radial-glow"
|
||
headingFontWeight="light"
|
||
>
|
||
<ReactLenis root>
|
||
<div id="nav" data-section="nav">
|
||
<NavbarStyleCentered
|
||
navItems={unifiedNavItems}
|
||
brandName="Kumda Kahve"
|
||
/>
|
||
</div>
|
||
|
||
<div id="full-menu" data-section="full-menu">
|
||
<ProductCardFour
|
||
animationType="slide-up"
|
||
textboxLayout="default"
|
||
gridVariant="uniform-all-items-equal"
|
||
useInvertedBackground={false}
|
||
products={[
|
||
// Kahveler
|
||
{ id: "kumda-1", name: "Geleneksel Türk Kahvesi", price: "₺90", variant: "Sade / Orta / Şekerli", imageSrc: "http://img.b2bpic.net/free-photo/coffee-ai-generated_23-2150691747.jpg?_wi=2", imageAlt: "Geleneksel Türk Kahvesi" },
|
||
{ id: "kumda-2", name: "Damla Sakızlı Türk Kahvesi", price: "₺95", variant: "Hafif Sakız Aroması", imageSrc: "http://img.b2bpic.net/free-photo/leftover-coffee-black-cup-window-sill_23-2147898257.jpg?_wi=1", imageAlt: "Damla Sakızlı Türk Kahvesi" },
|
||
{ id: "espresso-1", name: "Espresso Classico", price: "₺75", variant: "Tek / Çift Shot", imageSrc: "http://img.b2bpic.net/free-photo/latte-with-steamed-milk-coffee-beans-table_140725-10964.jpg?_wi=1", imageAlt: "Espresso Classico" },
|
||
{ id: "americano-1", name: "Caffè Americano", price: "₺80", variant: "Uzun ve Ferahlatıcı", imageSrc: "http://img.b2bpic.net/free-photo/cappuccino-coffee-cream-dark-table_23-2150645604.jpg", imageAlt: "Caffè Americano" },
|
||
{ id: "cappuccino-1", name: "Cappuccino Speciale", price: "₺90", variant: "Köpüklü ve Harmanlı", imageSrc: "http://img.b2bpic.net/free-photo/latte-art-coffee-shop_23-2149591146.jpg", imageAlt: "Cappuccino Speciale" },
|
||
{ id: "latte-1", name: "Latte Macchiato", price: "₺95", variant: "Katmanlı Lezzet", imageSrc: "http://img.b2bpic.net/free-photo/caucasian-woman-holding-coffee-drink-beach-with-foam-drinking-straw-with-sea_1268-16573.jpg?_wi=1", imageAlt: "Latte Macchiato" },
|
||
{ id: "filtre-1", name: "Filtre Kahve", price: "₺85", variant: "Demleme Seçenekleri", imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-dark-marble-table_140725-78153.jpg", imageAlt: "Filtre Kahve" },
|
||
|
||
// Çaylar
|
||
{ id: "cay-1", name: "Geleneksel Çay", price: "₺65", variant: "Demli / Açık", imageSrc: "http://img.b2bpic.net/free-photo/black-tea-with-lemon-cup_23-2149221193.jpg", imageAlt: "Geleneksel Çay" },
|
||
{ id: "nane-cay-1", name: "Ferahlatıcı Nane Çayı", price: "₺70", variant: "Taze Nane Yaprakları", imageSrc: "http://img.b2bpic.net/free-photo/refreshing-mint-tea_23-2148560081.jpg", imageAlt: "Ferahlatıcı Nane Çayı" },
|
||
{ id: "meyve-cay-1", name: "Orman Meyveli Çay", price: "₺75", variant: "Kırmızı Meyve Aroması", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tea-glass-fresh-lemons-wooden-table_23-2148762740.jpg", imageAlt: "Orman Meyveli Çay" },
|
||
|
||
// Soğuk İçecekler
|
||
{ id: "limonata-1", name: "Ev Yapımı Limonata", price: "₺70", variant: "Klasik / Çilekli", imageSrc: "http://img.b2bpic.net/free-photo/fresh-lime-juice-glass-ice_23-2148810237.jpg", imageAlt: "Ev Yapımı Limonata" },
|
||
{ id: "iced-latte-1", name: "Buzlu Latte", price: "₺95", variant: "Karamel / Vanilya", imageSrc: "http://img.b2bpic.net/free-photo/iced-coffee-glass-straw_23-2148281099.jpg", imageAlt: "Buzlu Latte" },
|
||
{ id: "ice-tea-1", name: "Şeftali Buzlu Çay", price: "₺80", variant: "Ferahlatıcı Şeftali", imageSrc: "http://img.b2bpic.net/free-photo/glass-ice-tea-peaches-berries-wooden-background_23-2148810255.jpg", imageAlt: "Şeftali Buzlu Çay" },
|
||
|
||
// Tatlılar
|
||
{ id: "cheesecake-1", name: "San Sebastian Cheesecake", price: "₺130", variant: "Çilek / Frambuaz", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-chocolate-cakes-with-macarons-pink_140725-78364.jpg", imageAlt: "San Sebastian Cheesecake" },
|
||
{ id: "tiramisu-1", name: "Klasik Tiramisu", price: "₺120", variant: "Orijinal İtalyan", imageSrc: "http://img.b2bpic.net/free-photo/chocolate-tiramisu-sweet-delight-perfect-dessert_23-2150920044.jpg", imageAlt: "Klasik Tiramisu" },
|
||
{ id: "cookie-1", name: "Çikolatalı Cookie", price: "₺80", variant: "Sütlü / Bitter Çikolata", imageSrc: "http://img.b2bpic.net/free-photo/breakfast-coffee-white-mug-cookies-top-view_23-2148441230.jpg", imageAlt: "Çikolatalı Cookie" },
|
||
|
||
// Atıştırmalıklar
|
||
{ id: "sandwich-1", name: "Ev Yapımı Sandviç", price: "₺110", variant: "Hindi Fümeli / Peynirli", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-with-avocado-crisp-bread-table_23-2148035030.jpg", imageAlt: "Ev Yapımı Sandviç" },
|
||
{ id: "kruvasan-1", name: "Tereyağlı Kruvasan", price: "₺55", variant: "Sade / Çikolatalı", imageSrc: "http://img.b2bpic.net/free-photo/freshly-baked-croissant-cup-coffee-table-cafe-side-view_23-2150646193.jpg", imageAlt: "Tereyağlı Kruvasan" }
|
||
]}
|
||
title="Kumda Kahve Yeni Menüsü: Lezzet ve Çeşitlilik!"
|
||
description="Geleneksel ve modern lezzetlerin buluştuğu zengin menümüzle tanışın. Kahveler, tatlılar, soğuk içecekler ve atıştırmalıklar... Her damak zevkine uygun bir seçenek!"
|
||
/>
|
||
</div>
|
||
|
||
<div id="footer" data-section="footer">
|
||
<FooterBaseReveal
|
||
logoText="Kumda Kahve"
|
||
columns={unifiedFooterColumns}
|
||
copyrightText="© 2024 Kumda Kahve. Tüm Hakları Saklıdır."
|
||
/>
|
||
</div>
|
||
</ReactLenis>
|
||
</ThemeProvider>
|
||
);
|
||
}
|