74 lines
2.7 KiB
TypeScript
74 lines
2.7 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } 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 { Public_Sans } from "next/font/google";
|
|
import { Montserrat } from "next/font/google";
|
|
import { Raleway } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'VANISCA Restaurant Agadir Bay | Family-Friendly Moroccan-Mediterranean Cuisine',
|
|
description: 'Experience exquisite Moroccan-Mediterranean fusion at VANISCA restaurant in Agadir Bay. Enjoy family-friendly dining, outdoor seating, delicious vegetarian options, and exceptional service. Book your table today!',
|
|
keywords: ["VANISCA, restaurant, Agadir, Agadir Bay, Moroccan food, Mediterranean food, family-friendly restaurant, outdoor seating, vegetarian options, best restaurants Agadir"],
|
|
openGraph: {
|
|
"title": "VANISCA Restaurant Agadir Bay | Moroccan-Mediterranean Cuisine",
|
|
"description": "Experience exquisite Moroccan-Mediterranean fusion at VANISCA restaurant in Agadir Bay. Enjoy family-friendly dining, outdoor seating, delicious vegetarian options, and exceptional service.",
|
|
"url": "https://www.vaniscarestaurant.com",
|
|
"siteName": "VANISCA Restaurant",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/restaurant-table-with-two-couches-near-window_140725-8459.jpg",
|
|
"alt": "Interior of VANISCA restaurant"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "VANISCA Restaurant Agadir Bay | Moroccan-Mediterranean Cuisine",
|
|
"description": "Experience exquisite Moroccan-Mediterranean fusion at VANISCA restaurant in Agadir Bay. Enjoy family-friendly dining, outdoor seating, delicious vegetarian options, and exceptional service.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/restaurant-table-with-two-couches-near-window_140725-8459.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
|
|
|
|
const raleway = Raleway({
|
|
variable: "--font-raleway",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${raleway.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|