diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2abbf06..99d66b8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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 geistSans = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Weather India - Real-Time Weather for Every City", description: "Get accurate, real-time weather information for all Indian cities. Track temperature, forecasts, and weather alerts with India's most trusted weather platform.", keywords: "weather, India, forecast, temperature, weather alerts, cities, real-time", metadataBase: new URL("https://weatherindia.com"), - alternates: { - canonical: "https://weatherindia.com"}, - openGraph: { - title: "Weather India - Real-Time Weather Tracking", description: "Track weather conditions across all Indian cities with 99.2% forecast accuracy.", url: "https://weatherindia.com", siteName: "Weather India", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkDy8T9fdLGQIhXz7cYu5wggEU/a-beautiful-weather-dashboard-interface--1773128007189-48af253a.png", alt: "Weather India Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Weather India - Real-Time Weather Platform", description: "Accurate weather forecasts for every city in India. Get real-time updates and alerts.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkDy8T9fdLGQIhXz7cYu5wggEU/a-beautiful-weather-dashboard-interface--1773128007189-48af253a.png"], - }, - 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} - -