From 38919d907b90a03fa99ee538e9c0aec274af05f4 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 10:30:31 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e7a9e6c..0ee6433 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Playfair_Display, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Constantine & Helen’s | Handcrafted Desserts in Evia', - description: 'Discover authentic, handcrafted desserts made fresh daily with love and tradition in Evia.', + title: 'Constantine & Helen’s | Artisan Patisserie in Evia', + description: 'Handcrafted desserts, made fresh daily in Evia. Experience the extraordinary.', openGraph: { "title": "Constantine & Helen’s | Luxury Patisserie", "description": "Where traditional Greek desserts meet modern elegance.", -- 2.49.1 From e8d1d50b92a4c7e3ddb41d0c0afb9503e3b5e275 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 10:30:32 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 99 +++++++++++++++++------------------------------- 1 file changed, 35 insertions(+), 64 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3601bfc..d9515ee 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,3 @@ -'use client'; - import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; @@ -11,53 +9,47 @@ import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import { Coffee, Leaf, Users, Cake, Award, Smile, Heart } from 'lucide-react'; -export default function HomePage() { - const navItems = [ - { name: "Menu", id: "#products" }, - { name: "About", id: "#about" }, - { name: "Reviews", id: "#testimonials" }, - { name: "Contact", id: "#contact" } - ]; - +export default function Page() { + const navItems = [{ name: 'Home', id: '/' }]; return ( - + -
- +
+ +
-
-
-
-
-
- -
- -
-
-
- -- 2.49.1