diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5fa3add..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: "Cafeteria – Premium Cafe & Restaurant in Kailashahar", description: "Discover authentic Indian, Chinese, and tandoor cuisine at Cafeteria in Kailashahar. Cozy atmosphere, delicious flavors, and unforgettable dining experience.", keywords: "restaurant Kailashahar, cafe Tripura, tandoori chicken, Indian food, dining", metadataBase: new URL("https://cafeteria-kailashahar.com"), - alternates: { - canonical: "https://cafeteria-kailashahar.com"}, - openGraph: { - title: "Cafeteria – Cafe cum Restaurant", description: "Premium dining experience with authentic Indian flavors in Kailashahar, Tripura", url: "https://cafeteria-kailashahar.com", siteName: "Cafeteria", images: [ - { - url: "http://img.b2bpic.net/free-photo/pork-kebab-plate-juicy-delicious-food_132075-14723.jpg", alt: "Cafeteria premium food"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Cafeteria – Premium Cafe & Restaurant", description: "Delicious food, cozy atmosphere, unforgettable flavors in Kailashahar", images: ["http://img.b2bpic.net/free-photo/pork-kebab-plate-juicy-delicious-food_132075-14723.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} +