From 33384e7fc7d4a5b1ddeb647fb7b2a2eec90bf2e2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 11:35:49 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 14b2cda..84c5db6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,19 +8,17 @@ import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], + variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: 'Bella Italia Ristorante - Authentic Italian Cuisine', - description: 'Experience the true taste of Italy at Bella Italia Ristorante. Savor traditional pasta, pizza, and exquisite wines in a cozy, authentic atmosphere.', + title: 'Bella Italia Ristorante - Authentische italienische Küche', + description: 'Erleben Sie den wahren Geschmack Italiens im Bella Italia Ristorante. Genießen Sie traditionelle Pasta, Pizza und exquisite Weine in einer gemütlichen, authentischen Atmosphäre.', }; export default function RootLayout({ @@ -29,10 +27,10 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - + {children} @@ -45,4 +43,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file -- 2.49.1 From a062e88a5e9448059e367a5a054c520d60f18d6e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 11:35:50 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 05479de..717e89e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,16 +16,16 @@ import { Sparkles } from "lucide-react"; export default function ItalianRestaurantPage() { return ( -- 2.49.1 From d91d6576bd72070e4fb58f2c26025e76b9836229 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 11:35:50 +0000 Subject: [PATCH 3/4] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index a25430f..c719d19 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-dm-sans), sans-serif; } -- 2.49.1 From de051ce94469ef09e432ef2e9c1ba4f608300f11 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 11:35:51 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 018e8e2..5a7d4af 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #000000; - --card: #0c0c0c; - --foreground: #ffffff; - --primary-cta: #106EFB; - --primary-cta-text: #ffffff; - --secondary-cta: #000000; - --secondary-cta-text: #ffffff; - --accent: #535353; - --background-accent: #106EFB; + --background: #f6f0e9; + --card: #efe7dd; + --foreground: #2b180a; + --primary-cta: #cc2936; + --primary-cta-text: #f6f0e9; + --secondary-cta: #efe7dd; + --secondary-cta-text: #2b180a; + --accent: #94877c; + --background-accent: #afa094; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1