diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7fe0d69..e77cb54 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Hogwarts Café Ja-Ela | Premium Harry Potter Themed Restaurant", description: "Experience the magic of Hogwarts at our premium café in Ja-Ela, Sri Lanka. Unique Harry Potter theme, delicious food, magical atmosphere. Perfect for dining, celebrations & photos.", keywords: "Hogwarts Café Ja Ela, Harry Potter themed café Sri Lanka, premium restaurant Ja-Ela, magical dining experience, wizard café, best café in Ja-Ela", metadataBase: new URL("https://hogwartscafe.lk"), - alternates: { - canonical: "https://hogwartscafe.lk"}, - openGraph: { - title: "Hogwarts Café - Step Into the Wizarding World", description: "Premium Harry Potter inspired restaurant in Ja-Ela with magical atmosphere, delicious cuisine, and Instagram-worthy décor.", url: "https://hogwartscafe.lk", siteName: "Hogwarts Café", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/girl-with-phone-night_1303-5750.jpg", alt: "Hogwarts Café magical interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Hogwarts Café - Magical Dining Experience", description: "Premium Harry Potter themed restaurant in Ja-Ela, Sri Lanka", images: ["http://img.b2bpic.net/free-photo/girl-with-phone-night_1303-5750.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Hogwarts Café | Magical Dining Experience", description: "Experience the wizarding world at Hogwarts Café in Ja-Ela. Harry Potter themed restaurant with magical atmosphere, delicious food, and enchanted décor."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -