Merge version_1 into main #1
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -49,19 +49,19 @@ export default function MenuPage() {
|
||||
},
|
||||
{
|
||||
id: "cheese-croquettes", category: "Starters", name: "Cheese Croquettes", price: "480 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-zebra-cake-wooden-plate-with-cinnamon-grapes_114579-76238.jpg", imageAlt: "Mixed cheese croquettes with sauce"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-zebra-cake-wooden-plate-with-cinnamon-grapes_114579-76238.jpg?_wi=2", imageAlt: "Mixed cheese croquettes with sauce"
|
||||
},
|
||||
{
|
||||
id: "vegeterian-soup", category: "Soups", name: "Vegetarian Soup", price: "240 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-ingredients-with-pumpkin-soup-notebook_23-2148834713.jpg", imageAlt: "Fresh vegetable soup"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-ingredients-with-pumpkin-soup-notebook_23-2148834713.jpg?_wi=1", imageAlt: "Fresh vegetable soup"
|
||||
},
|
||||
{
|
||||
id: "chicken-soup", category: "Soups", name: "Chicken Soup", price: "280 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-ingredients-with-pumpkin-soup-notebook_23-2148834713.jpg", imageAlt: "Warm chicken soup"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-ingredients-with-pumpkin-soup-notebook_23-2148834713.jpg?_wi=2", imageAlt: "Warm chicken soup"
|
||||
},
|
||||
{
|
||||
id: "fish-soup", category: "Soups", name: "Fish Soup", price: "340 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-fillet-with-vegetables-lemon-slices_140725-6207.jpg", imageAlt: "Hearty fish soup"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-fillet-with-vegetables-lemon-slices_140725-6207.jpg?_wi=1", imageAlt: "Hearty fish soup"
|
||||
},
|
||||
{
|
||||
id: "village-style-salad", category: "Salads", name: "Village Style Salad", price: "460 LEKE", rating: 5,
|
||||
@@ -69,7 +69,7 @@ export default function MenuPage() {
|
||||
},
|
||||
{
|
||||
id: "avocado-chicken-salad", category: "Salads", name: "Avocado Chicken Salad", price: "620 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-white-plate-with-tomatoes-salad-onion-chili-sauce_1150-21395.jpg", imageAlt: "Mixed leaves, avocado, chicken fillet salad"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-white-plate-with-tomatoes-salad-onion-chili-sauce_1150-21395.jpg?_wi=2", imageAlt: "Mixed leaves, avocado, chicken fillet salad"
|
||||
},
|
||||
{
|
||||
id: "rigaton-tomato-basil", category: "Pasta & Risotto", name: "Rigaton with Tomato and Basil", price: "460 LEKE", rating: 5,
|
||||
@@ -77,11 +77,11 @@ export default function MenuPage() {
|
||||
},
|
||||
{
|
||||
id: "linguine-aglio-e-olio-chili", category: "Pasta & Risotto", name: "Linguine Aglio e Olio with Chili", price: "680 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-italian-food-composition-with-copyspace_23-2148202492.jpg", imageAlt: "Linguine with garlic, olive oil, and chili"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-italian-food-composition-with-copyspace_23-2148202492.jpg?_wi=2", imageAlt: "Linguine with garlic, olive oil, and chili"
|
||||
},
|
||||
{
|
||||
id: "risotto-porcini-truffle", category: "Pasta & Risotto", name: "Risotto with Porcini and Truffle", price: "680 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/profiteroles-chocolate-sauce-inside-white-plate_114579-2550.jpg", imageAlt: "Creamy risotto with porcini mushrooms and truffle"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/profiteroles-chocolate-sauce-inside-white-plate_114579-2550.jpg?_wi=2", imageAlt: "Creamy risotto with porcini mushrooms and truffle"
|
||||
},
|
||||
{
|
||||
id: "house-meatballs", category: "Albanian Specialties", name: "House Meatballs", price: "580 LEKE", rating: 5,
|
||||
@@ -89,23 +89,23 @@ export default function MenuPage() {
|
||||
},
|
||||
{
|
||||
id: "homemade-burek", category: "Albanian Specialties", name: "Homemade Burek", price: "380 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-zebra-cake-wooden-plate-with-cinnamon-grapes_114579-76238.jpg", imageAlt: "Traditional Albanian burek served with sauces"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-zebra-cake-wooden-plate-with-cinnamon-grapes_114579-76238.jpg?_wi=3", imageAlt: "Traditional Albanian burek served with sauces"
|
||||
},
|
||||
{
|
||||
id: "grilled-sea-bass", category: "From The Sea", name: "Grilled Sea Bass with Vegetables", price: "880 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-fillet-with-vegetables-lemon-slices_140725-6207.jpg", imageAlt: "Grilled sea bass fillet with seasonal vegetables"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-fillet-with-vegetables-lemon-slices_140725-6207.jpg?_wi=2", imageAlt: "Grilled sea bass fillet with seasonal vegetables"
|
||||
},
|
||||
{
|
||||
id: "salmon-fillet", category: "From The Sea", name: "Salmon Fillet", price: "1360 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-fillet-with-vegetables-lemon-slices_140725-6207.jpg", imageAlt: "Salmon fillet served with black rice and avocado"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-fillet-with-vegetables-lemon-slices_140725-6207.jpg?_wi=3", imageAlt: "Salmon fillet served with black rice and avocado"
|
||||
},
|
||||
{
|
||||
id: "milk-veal-chop", category: "From The Land", name: "Milk Veal Chop", price: "1180 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lamb-chomps-wooden-board-with-lemon-slices-cutlery-tablecloth_114579-15654.jpg", imageAlt: "Premium milk veal chop"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lamb-chomps-wooden-board-with-lemon-slices-cutlery-tablecloth_114579-15654.jpg?_wi=1", imageAlt: "Premium milk veal chop"
|
||||
},
|
||||
{
|
||||
id: "beef-fillet", category: "From The Land", name: "Beef Fillet", price: "1340 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lamb-chomps-wooden-board-with-lemon-slices-cutlery-tablecloth_114579-15654.jpg", imageAlt: "Tender beef fillet"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lamb-chomps-wooden-board-with-lemon-slices-cutlery-tablecloth_114579-15654.jpg?_wi=2", imageAlt: "Tender beef fillet"
|
||||
},
|
||||
{
|
||||
id: "chocolate-souffle", category: "Desserts", name: "Chocolate Soufflé with Ice Cream", price: "360 LEKE", rating: 5,
|
||||
@@ -113,11 +113,11 @@ export default function MenuPage() {
|
||||
},
|
||||
{
|
||||
id: "cheesecake", category: "Desserts", name: "Cheesecake", price: "340 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-raisins-cup-tea-light-dark-background_140725-80172.jpg", imageAlt: "Creamy cheesecake dessert"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-raisins-cup-tea-light-dark-background_140725-80172.jpg?_wi=2", imageAlt: "Creamy cheesecake dessert"
|
||||
},
|
||||
{
|
||||
id: "house-dessert", category: "Desserts", name: "House Dessert", price: "280 LEKE", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-raisins-cup-tea-light-dark-background_140725-80172.jpg", imageAlt: "Chef's special house dessert"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-raisins-cup-tea-light-dark-background_140725-80172.jpg?_wi=3", imageAlt: "Chef's special house dessert"
|
||||
},
|
||||
{
|
||||
id: "water", category: "Drinks", name: "Water", price: "100 LEKE", rating: 5,
|
||||
|
||||
@@ -87,16 +87,16 @@ export default function HomePage() {
|
||||
description="From rich pastas to fresh salads, discover the flavors that make EJAA Mediterranean truly special. Each dish is a masterpiece of taste and tradition."
|
||||
products={[
|
||||
{
|
||||
id: "linguini-aglio-e-olio", name: "Linguini Aglio e Olio", price: "680 LEKE", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-italian-food-composition-with-copyspace_23-2148202492.jpg", imageAlt: "Linguini Aglio e Olio with chili flakes"
|
||||
id: "linguini-aglio-e-olio", name: "Linguini Aglio e Olio", price: "680 LEKE", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-italian-food-composition-with-copyspace_23-2148202492.jpg?_wi=1", imageAlt: "Linguini Aglio e Olio with chili flakes"
|
||||
},
|
||||
{
|
||||
id: "avocado-chicken-salad", name: "Avocado Chicken Salad", price: "620 LEKE", imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-white-plate-with-tomatoes-salad-onion-chili-sauce_1150-21395.jpg", imageAlt: "Fresh avocado chicken salad with greens"
|
||||
id: "avocado-chicken-salad", name: "Avocado Chicken Salad", price: "620 LEKE", imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-white-plate-with-tomatoes-salad-onion-chili-sauce_1150-21395.jpg?_wi=1", imageAlt: "Fresh avocado chicken salad with greens"
|
||||
},
|
||||
{
|
||||
id: "homemade-bread-selection", name: "Homemade Bread Selection", price: "380 LEKE", imageSrc: "http://img.b2bpic.net/free-photo/homemade-zebra-cake-wooden-plate-with-cinnamon-grapes_114579-76238.jpg", imageAlt: "Basket of assorted homemade bread"
|
||||
id: "homemade-bread-selection", name: "Homemade Bread Selection", price: "380 LEKE", imageSrc: "http://img.b2bpic.net/free-photo/homemade-zebra-cake-wooden-plate-with-cinnamon-grapes_114579-76238.jpg?_wi=1", imageAlt: "Basket of assorted homemade bread"
|
||||
},
|
||||
{
|
||||
id: "fresh-fruit-ice-cream-dessert", name: "Fresh Fruit & Ice Cream Dessert", price: "330 LEKE", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-raisins-cup-tea-light-dark-background_140725-80172.jpg", imageAlt: "Dessert with fresh fruits and ice cream"
|
||||
id: "fresh-fruit-ice-cream-dessert", name: "Fresh Fruit & Ice Cream Dessert", price: "330 LEKE", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-raisins-cup-tea-light-dark-background_140725-80172.jpg?_wi=1", imageAlt: "Dessert with fresh fruits and ice cream"
|
||||
}
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
@@ -155,7 +155,7 @@ export default function HomePage() {
|
||||
}}
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/profiteroles-chocolate-sauce-inside-white-plate_114579-2550.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/profiteroles-chocolate-sauce-inside-white-plate_114579-2550.jpg?_wi=1"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user