Update src/app/layout.tsx

This commit is contained in:
2026-03-04 02:57:24 +00:00
parent 97cafa41e0
commit dd9b6b5432

View File

@@ -1,59 +1,24 @@
import type { Metadata } from "next";
import { Raleway } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Vitamix Agadir Bay | Fresh Burgers, Pizza & Smoothies", description: "Discover Vitamix Agadir Bay—your favorite restaurant for fresh burgers, authentic Italian pizza, and refreshing smoothies. Rated 4.0★ by 1,769 reviews. Dine in, drive, or delivery available.", keywords: "restaurant Agadir Bay, burger Agadir, pizza Agadir, smoothie Agadir, family dining, Italian restaurant Morocco", metadataBase: new URL("https://vitamixagadarbay.com"),
alternates: {
canonical: "https://vitamixagadarbay.com"
},
openGraph: {
title: "Vitamix Agadir Bay | Fresh Burgers, Pizza & Smoothies", description: "Experience fresh cuisine in a stylish atmosphere. ⭐ 4.0 Rating • 1,769 Reviews", url: "https://vitamixagadarbay.com", siteName: "Vitamix Agadir Bay", type: "website", images: [
{
url: "https://vitamixagadarbay.com/og-image.jpg", alt: "Vitamix restaurant exterior and dining"
}
]
},
twitter: {
card: "summary_large_image", title: "Vitamix Agadir Bay | Fresh Burgers, Pizza & Smoothies", description: "Rated 4.0★ by 1,769 diners. Fresh ingredients. Great atmosphere. Consistently delicious.", images: ["https://vitamixagadarbay.com/twitter-image.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Vitamix - Restaurant in Agadir Bay", description: "Fresh burgers, authentic Italian pizza, and refreshing smoothies at Vitamix restaurant in Agadir Bay."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${raleway.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}