diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ebcc17..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "The Green Dot Theory | Vegetarian Café in South Delhi", description: "Discover the best vegetarian café in South Delhi. Fresh coffee, authentic cuisine, and peaceful vibes. 4.6★ rated. Visit us at Bhatti. Call 098106 66211.", keywords: "vegetarian café South Delhi, best café Bhatti, organic coffee shop, vegetarian restaurant Delhi, café near me", metadataBase: new URL("https://thegreendottheory.com"), - alternates: { - canonical: "https://thegreendottheory.com"}, - openGraph: { - title: "The Green Dot Theory | South Delhi's Favorite Vegetarian Café", description: "Fresh vegetarian food, premium coffee, and peaceful ambiance. 4.6★ rated by 227 customers. Open 11 AM – 11 PM daily.", url: "https://thegreendottheory.com", siteName: "The Green Dot Theory", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/elegant-couple-spend-time-restaurant_1157-20505.jpg", alt: "The Green Dot Theory Vegetarian Café Interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "The Green Dot Theory | Vegetarian Café", description: "Best café in South Delhi. 4.6★ rated. Visit us today!", images: ["http://img.b2bpic.net/free-photo/elegant-couple-spend-time-restaurant_1157-20505.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +