From 7c88857df1f1187f7f7272722aa57a73006809ca Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 19:23:56 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 2794 -------------------------------------------- 1 file changed, 2794 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9013d98..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2794 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Somali Cafe & Restaurant | Authentic Food in St. Cloud, MN", description: "Authentic Somali cuisine in St. Cloud, MN. Freshly made meals, classic flavors, friendly service. Try our goat meat, beef suqaar, and more.", keywords: "Somali food, restaurant St. Cloud MN, authentic Somali cuisine, goat meat, sambusa, beef suqaar", metadataBase: new URL("https://somali-cafe-stcloud.com"), - alternates: { - canonical: "https://somali-cafe-stcloud.com" - }, - openGraph: { - title: "Somali Cafe & Restaurant | Authentic Somali Cuisine", description: "Experience authentic Somali food in St. Cloud, MN. Family-owned restaurant with freshly made meals and classic flavors.", siteName: "Somali Cafe & Restaurant", type: "website", url: "https://somali-cafe-stcloud.com", images: [ - { - url: "http://img.b2bpic.net/free-photo/delicious-rice-dish_23-2147680628.jpg", alt: "Fresh goat meat with rice" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Somali Cafe & Restaurant", description: "Authentic Somali food in St. Cloud, MN", images: ["http://img.b2bpic.net/free-photo/delicious-rice-dish_23-2147680628.jpg"] - }, - robots: { - index: true, - follow: true - } -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -