From 592f1c9a7f0976e6d00a4e68e13a8d8f25e31755 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 23:15:15 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 7 insertions(+), 1412 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 20abeee..8758615 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Ayat V – London's Michelin-Level Ethiopian Vegan Restaurant", description: "Experience authentic Ethiopian vegan and vegetarian cuisine in London's most elegant dining destination. All 5-star reviews. Reserve your table at Ayat V today.", keywords: "Ethiopian restaurant London, vegan Ethiopian food, vegetarian cuisine, fine dining London, authentic Ethiopian platter, best vegan restaurant London, Soho restaurant", metadataBase: new URL("https://ayatv-restaurant.com"), - alternates: { - canonical: "https://ayatv-restaurant.com"}, - openGraph: { - title: "Ayat V – Authentic Ethiopian Fine Dining", description: "Luxury vegan and vegetarian Ethiopian cuisine in Soho, London. All 5-star reviews. Experience culinary excellence.", url: "https://ayatv-restaurant.com", siteName: "Ayat V Café & Restaurant", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/vertical-view-tomato-soup-blue-bowl-wooden-tray-beans-oil-bottle-mixed-color-table_140725-92022.jpg", alt: "Ayat V Ethiopian platter cinematic presentation"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Ayat V – London's Ethiopian Fine Dining Gem", description: "Experience authentic Ethiopian vegan excellence. All 5-star reviews.", images: ["http://img.b2bpic.net/free-photo/bottom-view-wooden-bowls-with-corn-seeds-beans-pumpkin-seeds-lentiles-black-pepper-bowl-cinnamon-anise-table_140725-146259.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Ayat V – Authentic Ethiopian Elegance", description: "Experience the warmth of genuine Ethiopian hospitality, exquisite vegan and vegetarian platters, and unforgettable culinary artistry in London's most intimate and elegant dining sanctuary."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -