Update src/app/layout.tsx

This commit is contained in:
2026-03-25 17:28:02 +00:00
parent 536ff8b252
commit 46bd89313c

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -69,4 +62,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}