From 46bd89313cc50ea445a1a92c46ed175094fd131f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 17:28:02 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 67 +++++++++++++++++++++------------------------- 1 file changed, 30 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6a23a4f..a6c4e4a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,45 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Libre_Baskerville } from "next/font/google"; - - - -export const metadata: Metadata = { - title: 'EJAA Mediterranean | Luxury Dining in Tirana', - description: 'Experience authentic Albanian & Italian flavors with exceptional service and relaxed elegance at EJAA Mediterranean. Reserve your table today!', - keywords: ["Mediterranean restaurant Tirana, Albanian food, Italian food, luxury dining, Tirana restaurant, best pasta, fine dining Tirana, EJAA Mediterranean"], - openGraph: { - "title": "EJAA Mediterranean | Luxury Dining in Tirana", - "description": "Experience authentic Albanian & Italian flavors with exceptional service and relaxed elegance at EJAA Mediterranean. Reserve your table today!", - "url": "https://www.ejaamediterranean.com/", - "siteName": "EJAA Mediterranean", - "images": [ - { - "url": "http://img.b2bpic.net/free-photo/man-giving-gift-box-heart-shape-woman-table_23-2148014477.jpg", - "alt": "Warmly lit restaurant interior with plated pasta and wine" - } - ], - "type": "website" - }, - twitter: { - "card": "summary_large_image", - "title": "EJAA Mediterranean | Luxury Dining in Tirana", - "description": "Experience authentic Albanian & Italian flavors with exceptional service and relaxed elegance at EJAA Mediterranean. Reserve your table today!", - "images": [ - "http://img.b2bpic.net/free-photo/man-giving-gift-box-heart-shape-woman-table_23-2148014477.jpg" - ] - }, - robots: { - "index": true, - "follow": true - }, -}; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "EJAA Mediterranean | Luxury Dining in Tirana", description: "Experience authentic Albanian & Italian flavors with exceptional service and relaxed elegance at EJAA Mediterranean. Reserve your table today!", keywords: "Mediterranean restaurant Tirana, Albanian food, Italian food, luxury dining, Tirana restaurant, best pasta, fine dining Tirana, EJAA Mediterranean", metadataBase: new URL("https://www.ejaamediterranean.com/"), + alternates: { + canonical: "https://www.ejaamediterranean.com/" + }, + openGraph: { + title: "EJAA Mediterranean | Luxury Dining in Tirana", description: "Experience authentic Albanian & Italian flavors with exceptional service and relaxed elegance at EJAA Mediterranean. Reserve your table today!", url: "https://www.ejaamediterranean.com/", siteName: "EJAA Mediterranean", images: [ + { + url: "http://img.b2bpic.net/free-photo/man-giving-gift-box-heart-shape-woman-table_23-2148014477.jpg", alt: "Warmly lit restaurant interior with plated pasta and wine" + } + ], + type: "website" + }, + twitter: { + card: "summary_large_image", title: "EJAA Mediterranean | Luxury Dining in Tirana", description: "Experience authentic Albanian & Italian flavors with exceptional service and relaxed elegance at EJAA Mediterranean. Reserve your table today!", images: [ + "http://img.b2bpic.net/free-photo/man-giving-gift-box-heart-shape-woman-table_23-2148014477.jpg" + ] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -57,7 +48,9 @@ export default function RootLayout({ return ( - + {children}