diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d9fbd15..813e525 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1430 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Indian Railway Tracker - Live Train Status & PNR Check", - description: "Track Indian trains in real-time with live status updates, station information, delays, and platform numbers. Quick PNR status lookup. 500K+ trusted travelers.", - keywords: "indian railway tracker, train status, PNR check, live train tracking, railway status, train delays, platform number", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Track Your Train - RailTrack", - description: "Get real-time Indian train status, live tracking, and PNR lookups. Fast, reliable, official data.", - type: "website", - siteName: "RailTrack", - images: [ - { - url: "http://img.b2bpic.net/free-photo/empty-railroad-platform_1359-702.jpg", - alt: "Indian Railway Tracker - Live Status", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Track Indian Trains - RailTrack", - description: "Real-time train tracking and PNR status lookup for Indian Railways.", - images: ["http://img.b2bpic.net/free-photo/empty-railroad-platform_1359-702.jpg"], - }, -}; + title: "RailTrack - Live Train Status & PNR Tracking", description: "Track your train in real-time, check PNR status, and book meals for your journey with RailTrack."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -