From dd9b6b54320ae4b73ed2d19d3deb0f1a92e6a645 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 02:57:24 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++++------------------------------------- 1 file changed, 10 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4f9b4c3..5f63e85 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +