Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 623e85e3fd | |||
| 91bba2a8ec | |||
| 2ab575d7b7 | |||
| d03d04e347 | |||
| 9d4ed92daa | |||
| 0438ea1283 | |||
| 7d005f5f1c | |||
| 984d903ee5 | |||
| 1648fd7e6d | |||
| 83cdc2fcb9 | |||
| daca2a59c9 | |||
| 3ee545dfc7 | |||
| a936487c5f |
114
src/app/menu/page.tsx
Normal file
114
src/app/menu/page.tsx
Normal file
@@ -0,0 +1,114 @@
|
||||
"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>
|
||||
);
|
||||
}
|
||||
@@ -61,7 +61,7 @@ export default function LandingPage() {
|
||||
text: "Bize Ulaşın", href: "#contact"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/coffee-ai-generated_23-2150691747.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/coffee-ai-generated_23-2150691747.jpg?_wi=1"
|
||||
imageAlt="Kumda pişen Türk kahvesi"
|
||||
mediaAnimation="opacity"
|
||||
/>
|
||||
@@ -86,21 +86,37 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "coffee-1", name: "Geleneksel Türk Kahvesi", price: "₺80", variant: "Sade / Orta / Şekerli", imageSrc: "http://img.b2bpic.net/free-photo/leftover-coffee-black-cup-window-sill_23-2147898257.jpg", imageAlt: "Geleneksel Türk Kahvesi"},
|
||||
{
|
||||
id: "coffee-2", name: "Espresso", price: "₺65", variant: "Tek / Çift Shot", imageSrc: "http://img.b2bpic.net/free-photo/latte-with-steamed-milk-coffee-beans-table_140725-10964.jpg", imageAlt: "Espresso"},
|
||||
{
|
||||
id: "dessert-1", name: "San Sebastian Cheesecake", price: "₺120", variant: "Çilekli / Frambuazlı", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-chocolate-cakes-with-macarons-pink_140725-78364.jpg", imageAlt: "San Sebastian Cheesecake"},
|
||||
{
|
||||
id: "snack-1", name: "Ev Yapımı Sandviç", price: "₺100", variant: "Tavuklu / Peynirli", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-with-avocado-crisp-bread-table_23-2148035030.jpg", imageAlt: "Ev Yapımı Sandviç"},
|
||||
{
|
||||
id: "coffee-3", name: "Buzlu Latte", price: "₺90", variant: "Karamel / Vanilya", imageSrc: "http://img.b2bpic.net/free-photo/caucasian-woman-holding-coffee-drink-beach-with-foam-drinking-straw-with-sea_1268-16573.jpg", imageAlt: "Buzlu Latte"},
|
||||
{
|
||||
id: "dessert-2", name: "Çikolatalı Cookie", price: "₺75", variant: "Sütlü / Bitter", imageSrc: "http://img.b2bpic.net/free-photo/breakfast-coffee-white-mug-cookies-top-view_23-2148441230.jpg", imageAlt: "Çikolatalı Cookie"},
|
||||
// Kumda Kahveler
|
||||
{ id: "kumda-1", name: "Türk Kahvesi Classico", price: "₺80", variant: "Yoğun ve Aromatik", imageSrc: "http://img.b2bpic.net/free-photo/coffee-ai-generated_23-2150691747.jpg?_wi=2", imageAlt: "Türk Kahvesi Classico" },
|
||||
{ id: "kumda-2", name: "Damla Sakızlı Türk Kahvesi", price: "₺85", variant: "Hafif Sakız Aroması", imageAlt: "Damla Sakızlı Türk Kahvesi", imageSrc: "http://img.b2bpic.net/free-photo/leftover-coffee-black-cup-window-sill_23-2147898257.jpg?_wi=1" },
|
||||
// Dünya Kahveleri
|
||||
{ id: "dunya-1", name: "Espresso Roma", price: "₺70", variant: "Gerçek İtalyan Deneyimi", imageAlt: "Espresso Roma", imageSrc: "http://img.b2bpic.net/free-photo/latte-with-steamed-milk-coffee-beans-table_140725-10964.jpg?_wi=1" },
|
||||
{ id: "dunya-2", name: "Caffè Americano", price: "₺75", variant: "Uzun ve Ferahlatıcı", imageAlt: "Caffè Americano", imageSrc: "http://img.b2bpic.net/free-photo/cappuccino-coffee-cream-dark-table_23-2150645604.jpg" },
|
||||
{ id: "dunya-3", name: "Cappuccino Milano", price: "₺85", variant: "Köpüklü ve Harmanlı", imageAlt: "Cappuccino Milano", imageSrc: "http://img.b2bpic.net/free-photo/latte-art-coffee-shop_23-2149591146.jpg" },
|
||||
{ id: "dunya-4", name: "Latte Macchiato Venezia", price: "₺90", variant: "Katmanlı Lezzet", imageAlt: "Latte Macchiato Venezia", imageSrc: "http://img.b2bpic.net/free-photo/caucasian-woman-holding-coffee-drink-beach-with-foam-drinking-straw-with-sea_1268-16573.jpg?_wi=1" },
|
||||
// Çaylar
|
||||
{ id: "cay-1", name: "Tavşan Kanı Çay", price: "₺60", variant: "Geleneksel Demli", imageAlt: "Tavşan Kanı Çay", imageSrc: "http://img.b2bpic.net/free-photo/black-tea-with-lemon-cup_23-2149221193.jpg" },
|
||||
{ id: "cay-2", name: "Menta Fresca", price: "₺65", variant: "Ferahlatıcı Nane Çayı", imageAlt: "Menta Fresca", imageSrc: "http://img.b2bpic.net/free-photo/refreshing-mint-tea_23-2148560081.jpg" },
|
||||
{ id: "cay-3", name: "Frutti di Bosco Çayı", price: "₺70", variant: "Orman Meyveli", imageAlt: "Frutti di Bosco Çayı", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tea-glass-fresh-lemons-wooden-table_23-2148762740.jpg" },
|
||||
// Soğuk İçecekler
|
||||
{ id: "soguk-1", name: "Freddo Espresso", price: "₺80", variant: "Buz Gibi Yoğun", imageAlt: "Freddo Espresso", imageSrc: "http://img.b2bpic.net/free-photo/iced-coffee-glass-straw_23-2148281099.jpg" },
|
||||
{ id: "soguk-2", name: "Limonata Amalfi", price: "₺70", variant: "Ev Yapımı Limonata", imageAlt: "Limonata Amalfi", imageSrc: "http://img.b2bpic.net/free-photo/fresh-lime-juice-glass-ice_23-2148810237.jpg" },
|
||||
{ id: "soguk-3", name: "Ice Tea Pesca", price: "₺75", variant: "Şeftali Aromalı", imageAlt: "Ice Tea Pesca", imageSrc: "http://img.b2bpic.net/free-photo/glass-ice-tea-peaches-berries-wooden-background_23-2148810255.jpg" },
|
||||
// Tatlılar
|
||||
{ id: "tatli-1", name: "Tiramisu Classico", price: "₺130", variant: "Geleneksel İtalyan", imageAlt: "Tiramisu Classico", imageSrc: "http://img.b2bpic.net/free-photo/tiramisu-ai-generated_23-2150892015.jpg" },
|
||||
{ id: "tatli-2", name: "Panna Cotta ai Frutti di Bosco", price: "₺120", variant: "Orman Meyveli", imageAlt: "Panna Cotta", imageSrc: "http://img.b2bpic.net/free-photo/fresh-berries-jelly-dessert_23-2149170295.jpg" },
|
||||
{ id: "tatli-3", name: "Cannoli Siciliani", price: "₺110", variant: "Ricotta Dolgulu", imageAlt: "Cannoli Siciliani", imageSrc: "http://img.b2bpic.net/free-photo/delicious-sweet-cannoli-dish_23-2149257245.jpg" },
|
||||
// Kahvaltı
|
||||
{ id: "kahvalti-1", name: "Uovo e Pancetta", price: "₺180", variant: "İtalyan Kahvaltısı", imageAlt: "Uovo e Pancetta", imageSrc: "http://img.b2bpic.net/free-photo/top-view-breakfast-table-with-fried-eggs-coffee_23-2148842187.jpg" },
|
||||
{ id: "kahvalti-2", name: "Cornetto e Marmellata", price: "₺100", variant: "Taze Kruvasan", imageAlt: "Cornetto e Marmellata", imageSrc: "http://img.b2bpic.net/free-photo/fresh-baked-croissant-cup-coffee_23-2148902097.jpg" },
|
||||
{ id: "kahvalti-3", name: "Frutta Fresca con Yogurt", price: "₺115", variant: "Mevsim Meyveli", imageAlt: "Frutta Fresca con Yogurt", imageSrc: "http://img.b2bpic.net/free-photo/fresh-fruit-yogurt_23-2149092496.jpg" },
|
||||
// Atıştırmalıklar
|
||||
{ id: "atistirmalik-1", name: "Bruschetta Pomodoro", price: "₺95", variant: "Taze Domatesli", imageAlt: "Bruschetta Pomodoro", imageSrc: "http://img.b2bpic.net/free-photo/delicious-italian-bruschetta-with-basil-spices_23-2149594589.jpg" },
|
||||
{ id: "atistirmalik-2", name: "Arancini Siciliani", price: "₺105", variant: "Ragu ve Mozzarellalı", imageAlt: "Arancini Siciliani", imageSrc: "http://img.b2bpic.net/free-photo/fried-balls-with-cheese-sauce_23-2148259463.jpg" },
|
||||
{ id: "atistirmalik-3", name: "Focaccia Rosmarino", price: "₺80", variant: "Biberiyeli Focaccia", imageAlt: "Focaccia Rosmarino", imageSrc: "http://img.b2bpic.net/free-photo/pizza-rosemary_23-2148897539.jpg" }
|
||||
]}
|
||||
title="Özel Menümüz"
|
||||
description="Kumda demlenen kahvelerimizden ev yapımı tatlılarımıza kadar her lezzeti keşfedin."
|
||||
title="Caffè e Delizie: 70'ler İtalyan Lezzetleri"
|
||||
description="Kumda Kahve'de, 70'li yılların sıcak İtalyan esintilerini taşıyan geniş menümüzle eşsiz bir lezzet yolculuğuna çıkın. Her kategoride özenle seçilmiş ürünlerimizle damaklarınız şenlenecek."
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user