|
|
|
|
@@ -1,59 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Figtree } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const figtree = Figtree({
|
|
|
|
|
variable: "--font-figtree", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Seqqaya: Restaurant & Pizzeria | Authentic Moroccan Cuisine in Sefrou", description: "Experience authentic Moroccan tagines and artisan wood-fired pizzas at Seqqaya. Located on Boulevard Mohamed V, Sefrou. Reserve online or order for delivery.", keywords: "Moroccan restaurant Sefrou, pizza restaurant, tagine, khlea, authentic cuisine, reservations, takeaway, delivery, Sefrou dining", metadataBase: new URL("https://seqqaya-restaurant.ma"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://seqqaya-restaurant.ma"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Seqqaya: Restaurant & Pizzeria in Sefrou", description: "Authentic Moroccan cuisine meets modern convenience. Traditional tagines, artisan pizzas, and warm hospitality.", url: "https://seqqaya-restaurant.ma", siteName: "Seqqaya", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/national-qutab-with-sumakh-other-spices_114579-2393.jpg", alt: "Seqqaya Restaurant Interior"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Seqqaya: Authentic Moroccan Restaurant in Sefrou", description: "Experience traditional Moroccan hospitality and modern convenience.", images: ["http://img.b2bpic.net/free-photo/national-qutab-with-sumakh-other-spices_114579-2393.jpg"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "Seqqaya - Authentic Moroccan Cuisine & Artisan Pizza", description: "Experience traditional Moroccan tagines, artisan wood-fired pizzas, and authentic breakfast at Seqqaya in Sefrou."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1421,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|