Luna QR Menu - ilk surum
This commit is contained in:
657
app/globals.css
657
app/globals.css
@@ -1,10 +1,5 @@
|
||||
@import "tailwindcss";
|
||||
|
||||
:root {
|
||||
--background: #ffffff;
|
||||
--foreground: #171717;
|
||||
}
|
||||
|
||||
@theme inline {
|
||||
--color-background: var(--background);
|
||||
--color-foreground: var(--foreground);
|
||||
@@ -12,15 +7,655 @@
|
||||
--font-mono: var(--font-geist-mono);
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--background: #0a0a0a;
|
||||
--foreground: #ededed;
|
||||
}
|
||||
:root {
|
||||
--background: #0a0a0f;
|
||||
--foreground: #e8e4dc;
|
||||
--gold: #c9a96e;
|
||||
--gold-light: #dfc594;
|
||||
--gold-dark: #a68544;
|
||||
--surface: #121218;
|
||||
--surface-elevated: #1a1a24;
|
||||
--border-subtle: rgba(201, 169, 110, 0.12);
|
||||
--border-glow: rgba(201, 169, 110, 0.25);
|
||||
--text-secondary: #8a8690;
|
||||
--text-muted: #5a5660;
|
||||
--accent-purple: #7c5cbf;
|
||||
--accent-rose: #b44a65;
|
||||
--accent-teal: #4a9b8e;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
body {
|
||||
background: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-family: 'Inter', sans-serif;
|
||||
min-height: 100vh;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
/* ===== SCROLLBAR ===== */
|
||||
::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: var(--background);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: var(--gold-dark);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: var(--gold);
|
||||
}
|
||||
|
||||
/* ===== HERO ===== */
|
||||
.hero {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
min-height: 100dvh;
|
||||
padding: 2rem 1rem;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.hero::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background:
|
||||
radial-gradient(ellipse 600px 400px at 50% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 70%),
|
||||
radial-gradient(ellipse 400px 300px at 20% 80%, rgba(124, 92, 191, 0.04) 0%, transparent 70%),
|
||||
radial-gradient(ellipse 400px 300px at 80% 70%, rgba(180, 74, 101, 0.04) 0%, transparent 70%);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.hero-moon {
|
||||
position: absolute;
|
||||
top: 8%;
|
||||
right: 15%;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(circle at 35% 35%, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.03));
|
||||
box-shadow:
|
||||
0 0 60px rgba(201, 169, 110, 0.08),
|
||||
0 0 120px rgba(201, 169, 110, 0.04);
|
||||
animation: moonPulse 6s ease-in-out infinite;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
@keyframes moonPulse {
|
||||
|
||||
0%,
|
||||
100% {
|
||||
opacity: 0.6;
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
}
|
||||
|
||||
.hero-stars {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.star {
|
||||
position: absolute;
|
||||
width: 2px;
|
||||
height: 2px;
|
||||
background: var(--gold-light);
|
||||
border-radius: 50%;
|
||||
animation: twinkle var(--duration) ease-in-out infinite;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
@keyframes twinkle {
|
||||
|
||||
0%,
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: scale(0.5);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: var(--max-opacity);
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
.hero-brand {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
animation: fadeSlideUp 1.2s ease-out;
|
||||
}
|
||||
|
||||
.hero-illustration {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 0;
|
||||
opacity: 0.04;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.hero-illustration img {
|
||||
width: auto;
|
||||
height: 85%;
|
||||
max-height: 90vh;
|
||||
object-fit: contain;
|
||||
filter: invert(1);
|
||||
}
|
||||
|
||||
.hero-logo {
|
||||
width: 220px;
|
||||
height: 220px;
|
||||
border-radius: 50%;
|
||||
object-fit: cover;
|
||||
border: 2px solid rgba(201, 169, 110, 0.2);
|
||||
box-shadow:
|
||||
0 0 40px rgba(201, 169, 110, 0.1),
|
||||
0 0 80px rgba(201, 169, 110, 0.05);
|
||||
filter: invert(1);
|
||||
transition: transform 0.4s ease, box-shadow 0.4s ease;
|
||||
}
|
||||
|
||||
.hero-logo:hover {
|
||||
transform: scale(1.05);
|
||||
box-shadow:
|
||||
0 0 50px rgba(201, 169, 110, 0.15),
|
||||
0 0 100px rgba(201, 169, 110, 0.08);
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.hero-logo {
|
||||
width: 160px;
|
||||
height: 160px;
|
||||
}
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-family: 'Playfair Display', serif;
|
||||
font-size: clamp(2.8rem, 8vw, 5rem);
|
||||
font-weight: 500;
|
||||
line-height: 1.1;
|
||||
color: #fff;
|
||||
margin-bottom: 0.5rem;
|
||||
background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, #fff 100%);
|
||||
background-size: 200% auto;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
animation: shimmerTitle 6s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes shimmerTitle {
|
||||
|
||||
0%,
|
||||
100% {
|
||||
background-position: 0% center;
|
||||
}
|
||||
|
||||
50% {
|
||||
background-position: 200% center;
|
||||
}
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 300;
|
||||
letter-spacing: 0.4em;
|
||||
color: var(--text-secondary);
|
||||
margin-top: 0.75rem;
|
||||
}
|
||||
|
||||
.hero-divider {
|
||||
width: 60px;
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg, transparent, var(--gold), transparent);
|
||||
margin: 2rem auto;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.hero-scroll-cta {
|
||||
position: absolute;
|
||||
bottom: 2rem;
|
||||
left: 0;
|
||||
right: 0;
|
||||
margin: 0 auto;
|
||||
width: fit-content;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
color: var(--text-muted);
|
||||
font-size: 0.7rem;
|
||||
letter-spacing: 0.2em;
|
||||
animation: fadeSlideUp 1.5s ease-out 0.5s both;
|
||||
cursor: pointer;
|
||||
transition: color 0.3s;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.hero-scroll-cta:hover {
|
||||
color: var(--gold);
|
||||
}
|
||||
|
||||
.scroll-arrow {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-right: 1px solid var(--gold-dark);
|
||||
border-bottom: 1px solid var(--gold-dark);
|
||||
transform: rotate(45deg);
|
||||
animation: bounceArrow 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes bounceArrow {
|
||||
|
||||
0%,
|
||||
100% {
|
||||
transform: rotate(45deg) translate(0, 0);
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: rotate(45deg) translate(4px, 4px);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeSlideUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* ===== CATEGORY NAVIGATION ===== */
|
||||
.category-nav {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
background: rgba(10, 10, 15, 0.85);
|
||||
backdrop-filter: blur(20px);
|
||||
-webkit-backdrop-filter: blur(20px);
|
||||
border-bottom: 1px solid var(--border-subtle);
|
||||
padding: 0;
|
||||
transition: box-shadow 0.3s;
|
||||
}
|
||||
|
||||
.category-nav.scrolled {
|
||||
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.category-nav-inner {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
overflow-x: auto;
|
||||
scrollbar-width: none;
|
||||
-ms-overflow-style: none;
|
||||
padding: 0 1rem;
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.category-nav-inner::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.category-nav-btn {
|
||||
flex-shrink: 0;
|
||||
padding: 1rem 1.25rem;
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.15em;
|
||||
color: var(--text-muted);
|
||||
background: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
transition: color 0.3s, border-color 0.3s;
|
||||
border-bottom: 2px solid transparent;
|
||||
white-space: nowrap;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.category-nav-btn:hover {
|
||||
color: var(--foreground);
|
||||
}
|
||||
|
||||
.category-nav-btn.active {
|
||||
color: var(--gold);
|
||||
border-bottom-color: var(--gold);
|
||||
}
|
||||
|
||||
/* ===== MENU SECTION ===== */
|
||||
.menu-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 0 1.5rem 4rem;
|
||||
}
|
||||
|
||||
.category-section {
|
||||
padding-top: 3rem;
|
||||
margin-bottom: 2rem;
|
||||
animation: fadeIn 0.6s ease-out;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.category-header {
|
||||
text-align: center;
|
||||
margin-bottom: 2.5rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.category-title {
|
||||
font-family: 'Playfair Display', serif;
|
||||
font-size: clamp(1.6rem, 4vw, 2.2rem);
|
||||
font-weight: 500;
|
||||
color: #fff;
|
||||
letter-spacing: 0.05em;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.category-title::after {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 40px;
|
||||
height: 1px;
|
||||
background: var(--gold);
|
||||
margin: 0.75rem auto 0;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.category-item-count {
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 400;
|
||||
color: var(--text-muted);
|
||||
letter-spacing: 0.15em;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
/* ===== MENU ITEMS ===== */
|
||||
.menu-items {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.menu-item {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
padding: 1.25rem 0;
|
||||
border-bottom: 1px solid var(--border-subtle);
|
||||
transition: background 0.3s, border-color 0.3s;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.menu-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.menu-item:hover {
|
||||
border-color: var(--border-glow);
|
||||
}
|
||||
|
||||
.item-info {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.item-name {
|
||||
font-family: 'Outfit', sans-serif;
|
||||
font-size: 1.05rem;
|
||||
font-weight: 500;
|
||||
color: #fff;
|
||||
margin-bottom: 0.3rem;
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
.menu-item:hover .item-name {
|
||||
color: var(--gold-light);
|
||||
}
|
||||
|
||||
.item-meta {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.2rem;
|
||||
}
|
||||
|
||||
.item-ingredients {
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-size: 0.78rem;
|
||||
font-weight: 300;
|
||||
color: var(--text-secondary);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.item-taste-profile {
|
||||
display: inline-flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.35rem;
|
||||
margin-top: 0.3rem;
|
||||
}
|
||||
|
||||
.taste-tag {
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-size: 0.65rem;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.08em;
|
||||
padding: 0.2rem 0.55rem;
|
||||
border-radius: 100px;
|
||||
background: rgba(201, 169, 110, 0.08);
|
||||
color: var(--gold);
|
||||
border: 1px solid rgba(201, 169, 110, 0.15);
|
||||
}
|
||||
|
||||
.item-grape {
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 400;
|
||||
color: var(--accent-purple);
|
||||
font-style: italic;
|
||||
opacity: 0.85;
|
||||
}
|
||||
|
||||
.item-price-area {
|
||||
flex-shrink: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
gap: 0.2rem;
|
||||
}
|
||||
|
||||
.item-price {
|
||||
font-family: 'Outfit', sans-serif;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
color: var(--gold);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.item-price-multi {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
gap: 0.15rem;
|
||||
}
|
||||
|
||||
.price-label {
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-size: 0.65rem;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.1em;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.price-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.price-row .item-price {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
/* ===== FOOTER ===== */
|
||||
.menu-footer {
|
||||
text-align: center;
|
||||
padding: 3rem 1.5rem 2rem;
|
||||
border-top: 1px solid var(--border-subtle);
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.footer-note {
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-size: 0.78rem;
|
||||
font-weight: 300;
|
||||
color: var(--text-muted);
|
||||
line-height: 1.7;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.footer-brand {
|
||||
margin-top: 2rem;
|
||||
font-family: 'Playfair Display', serif;
|
||||
font-size: 1rem;
|
||||
color: var(--gold-dark);
|
||||
opacity: 0.5;
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
|
||||
/* ===== ANIMATIONS ===== */
|
||||
.reveal {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
|
||||
}
|
||||
|
||||
.reveal.visible {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
/* ===== RESPONSIVE ===== */
|
||||
@media (max-width: 480px) {
|
||||
.hero-moon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
top: 12%;
|
||||
right: 10%;
|
||||
}
|
||||
|
||||
.category-nav-btn {
|
||||
padding: 0.85rem 1rem;
|
||||
font-size: 0.65rem;
|
||||
}
|
||||
|
||||
.menu-container {
|
||||
padding: 0 1rem 3rem;
|
||||
}
|
||||
|
||||
.menu-item {
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
||||
.item-name {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.item-price {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* ===== BACK TO TOP ===== */
|
||||
.back-to-top {
|
||||
position: fixed;
|
||||
bottom: 2rem;
|
||||
right: 2rem;
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
border-radius: 50%;
|
||||
background: rgba(201, 169, 110, 0.12);
|
||||
border: 1px solid rgba(201, 169, 110, 0.2);
|
||||
color: var(--gold);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transform: translateY(10px);
|
||||
transition: all 0.3s ease;
|
||||
z-index: 50;
|
||||
backdrop-filter: blur(10px);
|
||||
}
|
||||
|
||||
.back-to-top.visible {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.back-to-top:hover {
|
||||
background: rgba(201, 169, 110, 0.2);
|
||||
border-color: var(--gold);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.back-to-top svg {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
@@ -1,20 +1,16 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const geistSans = Geist({
|
||||
variable: "--font-geist-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App",
|
||||
description: "Generated by create next app",
|
||||
title: "Luna Cocktail & More | Menü",
|
||||
description:
|
||||
"Luna Cocktail and More - Özel kokteyllerimiz, şaraplarımız ve daha fazlası. QR menü ile keşfedin.",
|
||||
keywords: "cocktail, kokteyl, bar, menü, luna, drinks",
|
||||
openGraph: {
|
||||
title: "Luna Cocktail & More | Menü",
|
||||
description: "Özel kokteyllerimiz, şaraplarımız ve daha fazlası.",
|
||||
type: "website",
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -23,11 +19,20 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html
|
||||
lang="en"
|
||||
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
|
||||
>
|
||||
<body className="min-h-full flex flex-col">{children}</body>
|
||||
<html lang="tr">
|
||||
<head>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link
|
||||
rel="preconnect"
|
||||
href="https://fonts.gstatic.com"
|
||||
crossOrigin="anonymous"
|
||||
/>
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
</head>
|
||||
<body suppressHydrationWarning>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
377
app/page.tsx
377
app/page.tsx
@@ -1,65 +1,324 @@
|
||||
import Image from "next/image";
|
||||
"use client";
|
||||
|
||||
import { useEffect, useState, useRef, useCallback } from "react";
|
||||
import Image from "next/image";
|
||||
import menuData from "../menu/menu.json";
|
||||
|
||||
/* ────── Helpers ────── */
|
||||
interface MenuItem {
|
||||
name: string;
|
||||
ingredients?: string;
|
||||
taste_profile?: string;
|
||||
grape_variety?: string;
|
||||
price:
|
||||
| string
|
||||
| { single?: string; double?: string; glass?: string; bottle?: string };
|
||||
}
|
||||
|
||||
interface Category {
|
||||
id: string;
|
||||
title: string;
|
||||
items: MenuItem[];
|
||||
}
|
||||
|
||||
interface MenuData {
|
||||
restaurant_name: string;
|
||||
footer_note: string;
|
||||
categories: Category[];
|
||||
}
|
||||
|
||||
const data = menuData as MenuData;
|
||||
|
||||
/* ────── Stars component ────── */
|
||||
interface Star {
|
||||
id: number;
|
||||
left: string;
|
||||
top: string;
|
||||
duration: string;
|
||||
delay: string;
|
||||
maxOpacity: number;
|
||||
}
|
||||
|
||||
function HeroStars() {
|
||||
const [stars, setStars] = useState<Star[]>([]);
|
||||
|
||||
useEffect(() => {
|
||||
setStars(
|
||||
Array.from({ length: 40 }, (_, i) => ({
|
||||
id: i,
|
||||
left: `${Math.random() * 100}%`,
|
||||
top: `${Math.random() * 100}%`,
|
||||
duration: `${3 + Math.random() * 4}s`,
|
||||
delay: `${Math.random() * 5}s`,
|
||||
maxOpacity: 0.3 + Math.random() * 0.5,
|
||||
}))
|
||||
);
|
||||
}, []);
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className="flex flex-col flex-1 items-center justify-center bg-zinc-50 font-sans dark:bg-black">
|
||||
<main className="flex flex-1 w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
|
||||
<Image
|
||||
className="dark:invert"
|
||||
src="/next.svg"
|
||||
alt="Next.js logo"
|
||||
width={100}
|
||||
height={20}
|
||||
priority
|
||||
<div className="hero-stars">
|
||||
{stars.map((s) => (
|
||||
<span
|
||||
key={s.id}
|
||||
className="star"
|
||||
style={
|
||||
{
|
||||
left: s.left,
|
||||
top: s.top,
|
||||
"--duration": s.duration,
|
||||
"--max-opacity": s.maxOpacity,
|
||||
animationDelay: s.delay,
|
||||
} as React.CSSProperties
|
||||
}
|
||||
/>
|
||||
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
|
||||
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
|
||||
To get started, edit the page.tsx file.
|
||||
</h1>
|
||||
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
|
||||
Looking for a starting point or more instructions? Head over to{" "}
|
||||
<a
|
||||
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
className="font-medium text-zinc-950 dark:text-zinc-50"
|
||||
>
|
||||
Templates
|
||||
</a>{" "}
|
||||
or the{" "}
|
||||
<a
|
||||
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
className="font-medium text-zinc-950 dark:text-zinc-50"
|
||||
>
|
||||
Learning
|
||||
</a>{" "}
|
||||
center.
|
||||
</p>
|
||||
</div>
|
||||
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
|
||||
<a
|
||||
className="flex h-12 w-full items-center justify-center gap-2 rounded-full bg-foreground px-5 text-background transition-colors hover:bg-[#383838] dark:hover:bg-[#ccc] md:w-[158px]"
|
||||
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<Image
|
||||
className="dark:invert"
|
||||
src="/vercel.svg"
|
||||
alt="Vercel logomark"
|
||||
width={16}
|
||||
height={16}
|
||||
/>
|
||||
Deploy Now
|
||||
</a>
|
||||
<a
|
||||
className="flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/[.08] px-5 transition-colors hover:border-transparent hover:bg-black/[.04] dark:border-white/[.145] dark:hover:bg-[#1a1a1a] md:w-[158px]"
|
||||
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Documentation
|
||||
</a>
|
||||
</div>
|
||||
</main>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
/* ────── Price renderer ────── */
|
||||
function PriceDisplay({ price }: { price: MenuItem["price"] }) {
|
||||
if (typeof price === "string") {
|
||||
return <span className="item-price">{price}</span>;
|
||||
}
|
||||
|
||||
const entries: [string, string][] = [];
|
||||
if (price.single) entries.push(["Tek", price.single]);
|
||||
if (price.double) entries.push(["Dbl", price.double]);
|
||||
if (price.glass) entries.push(["Kadeh", price.glass]);
|
||||
if (price.bottle) entries.push(["Şişe", price.bottle]);
|
||||
|
||||
return (
|
||||
<div className="item-price-multi">
|
||||
{entries.map(([label, val]) => (
|
||||
<div key={label} className="price-row">
|
||||
<span className="price-label">{label}</span>
|
||||
<span className="item-price">{val}</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
/* ────── Category Icon (decorative) ────── */
|
||||
function getCategoryIcon(id: string): string {
|
||||
const icons: Record<string, string> = {
|
||||
classic_cocktails: "🍸",
|
||||
lunas_cocktails: "🌙",
|
||||
shots: "🥃",
|
||||
gin: "🫒",
|
||||
whiskey: "🥂",
|
||||
rum: "🏴☠️",
|
||||
tequila: "🌵",
|
||||
vodka: "🧊",
|
||||
cognac: "🍷",
|
||||
red_wine: "🍷",
|
||||
white_wine: "🥂",
|
||||
roze_blush: "🌸",
|
||||
champagne_prosecco: "🍾",
|
||||
draft_beer: "🍺",
|
||||
bottle_beer: "🍻",
|
||||
coffee: "☕",
|
||||
soft_drinks: "🧃",
|
||||
snacks: "🥜",
|
||||
};
|
||||
return icons[id] || "✦";
|
||||
}
|
||||
|
||||
/* ────── Main Page ────── */
|
||||
export default function MenuPage() {
|
||||
const [activeCategory, setActiveCategory] = useState<string>(
|
||||
data.categories[0]?.id || ""
|
||||
);
|
||||
const [showBackToTop, setShowBackToTop] = useState(false);
|
||||
const navRef = useRef<HTMLDivElement>(null);
|
||||
const sectionRefs = useRef<Map<string, HTMLElement>>(new Map());
|
||||
|
||||
/* Intersection observer to update active category */
|
||||
useEffect(() => {
|
||||
const observer = new IntersectionObserver(
|
||||
(entries) => {
|
||||
const visible = entries
|
||||
.filter((e) => e.isIntersecting)
|
||||
.sort((a, b) => a.boundingClientRect.top - b.boundingClientRect.top);
|
||||
if (visible.length > 0) {
|
||||
const id = visible[0].target.getAttribute("data-category-id");
|
||||
if (id) setActiveCategory(id);
|
||||
}
|
||||
},
|
||||
{ rootMargin: "-50% 0px -50% 0px", threshold: 0 }
|
||||
);
|
||||
|
||||
sectionRefs.current.forEach((el) => observer.observe(el));
|
||||
return () => observer.disconnect();
|
||||
}, []);
|
||||
|
||||
/* Back-to-top visibility */
|
||||
useEffect(() => {
|
||||
const onScroll = () => setShowBackToTop(window.scrollY > 600);
|
||||
window.addEventListener("scroll", onScroll, { passive: true });
|
||||
return () => window.removeEventListener("scroll", onScroll);
|
||||
}, []);
|
||||
|
||||
/* Scroll nav button into view */
|
||||
useEffect(() => {
|
||||
if (!navRef.current) return;
|
||||
const btn = navRef.current.querySelector(
|
||||
`[data-nav-id="${activeCategory}"]`
|
||||
);
|
||||
if (btn) {
|
||||
btn.scrollIntoView({ behavior: "smooth", block: "nearest", inline: "center" });
|
||||
}
|
||||
}, [activeCategory]);
|
||||
|
||||
const scrollToCategory = useCallback((id: string) => {
|
||||
const el = sectionRefs.current.get(id);
|
||||
if (el) {
|
||||
const offset = 56;
|
||||
const y = el.getBoundingClientRect().top + window.scrollY - offset;
|
||||
window.scrollTo({ top: y, behavior: "smooth" });
|
||||
}
|
||||
}, []);
|
||||
|
||||
const setSectionRef = useCallback(
|
||||
(id: string) => (el: HTMLElement | null) => {
|
||||
if (el) sectionRefs.current.set(id, el);
|
||||
},
|
||||
[]
|
||||
);
|
||||
|
||||
return (
|
||||
<>
|
||||
{/* ───── HERO ───── */}
|
||||
<section className="hero" id="hero">
|
||||
<HeroStars />
|
||||
<div className="hero-moon" />
|
||||
|
||||
{/* Background illustration */}
|
||||
|
||||
|
||||
<div className="hero-brand">
|
||||
<Image
|
||||
src="/logo1.png"
|
||||
alt="Luna Cocktail and More"
|
||||
width={360}
|
||||
height={360}
|
||||
className="hero-logo"
|
||||
priority
|
||||
/>
|
||||
<div className="hero-divider" />
|
||||
<p className="hero-subtitle">MENÜ</p>
|
||||
</div>
|
||||
|
||||
<a
|
||||
href="#menu"
|
||||
className="hero-scroll-cta"
|
||||
onClick={(e) => {
|
||||
e.preventDefault();
|
||||
scrollToCategory(data.categories[0]?.id);
|
||||
}}
|
||||
>
|
||||
MENÜYÜ KEŞFET
|
||||
<span className="scroll-arrow" />
|
||||
</a>
|
||||
</section>
|
||||
|
||||
{/* ───── CATEGORY NAV ───── */}
|
||||
<nav className="category-nav" id="menu">
|
||||
<div className="category-nav-inner" ref={navRef}>
|
||||
{data.categories.map((cat) => (
|
||||
<button
|
||||
key={cat.id}
|
||||
data-nav-id={cat.id}
|
||||
className={`category-nav-btn ${activeCategory === cat.id ? "active" : ""
|
||||
}`}
|
||||
onClick={() => scrollToCategory(cat.id)}
|
||||
>
|
||||
{cat.title.toLocaleUpperCase('en')}
|
||||
</button>
|
||||
))}
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
{/* ───── MENU CONTENT ───── */}
|
||||
<main className="menu-container">
|
||||
{data.categories.map((cat) => (
|
||||
<section
|
||||
key={cat.id}
|
||||
className="category-section"
|
||||
data-category-id={cat.id}
|
||||
ref={setSectionRef(cat.id)}
|
||||
>
|
||||
<div className="category-header">
|
||||
<h2 className="category-title">
|
||||
<span style={{ marginRight: "0.5rem", fontSize: "0.85em" }}>
|
||||
{getCategoryIcon(cat.id)}
|
||||
</span>
|
||||
{cat.title}
|
||||
</h2>
|
||||
<p className="category-item-count">
|
||||
{cat.items.length} ÜRÜN
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="menu-items">
|
||||
{cat.items.map((item, idx) => (
|
||||
<div className="menu-item" key={`${cat.id}-${idx}`}>
|
||||
<div className="item-info">
|
||||
<h3 className="item-name">{item.name}</h3>
|
||||
<div className="item-meta">
|
||||
{item.grape_variety && (
|
||||
<span className="item-grape">{item.grape_variety}</span>
|
||||
)}
|
||||
{item.ingredients && (
|
||||
<span className="item-ingredients">
|
||||
{item.ingredients}
|
||||
</span>
|
||||
)}
|
||||
{item.taste_profile && (
|
||||
<div className="item-taste-profile">
|
||||
{item.taste_profile.split("-").map((t, i) => (
|
||||
<span key={i} className="taste-tag">
|
||||
{t.trim()}
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
<div className="item-price-area">
|
||||
<PriceDisplay price={item.price} />
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
))}
|
||||
</main>
|
||||
|
||||
{/* ───── FOOTER ───── */}
|
||||
<footer className="menu-footer">
|
||||
<p className="footer-note">{data.footer_note}</p>
|
||||
<p className="footer-brand">LUNA ✦</p>
|
||||
</footer>
|
||||
|
||||
{/* ───── BACK TO TOP ───── */}
|
||||
<button
|
||||
className={`back-to-top ${showBackToTop ? "visible" : ""}`}
|
||||
onClick={() => window.scrollTo({ top: 0, behavior: "smooth" })}
|
||||
aria-label="Yukarı git"
|
||||
>
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
strokeWidth={2}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
>
|
||||
<polyline points="18 15 12 9 6 15" />
|
||||
</svg>
|
||||
</button>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user