diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1f10295..d70443a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Shah Rukh Khan | King of Bollywood - Official Portfolio", description: "Explore the legendary career of Shah Rukh Khan, Indian cinema's iconic actor, producer, and global cultural ambassador with 35+ years of blockbuster films.", keywords: "Shah Rukh Khan, Bollywood actor, Indian cinema, SRK, filmography, awards, King of Bollywood", metadataBase: new URL("https://shahrukhkhan.official"), - alternates: { - canonical: "https://shahrukhkhan.official"}, - openGraph: { - title: "Shah Rukh Khan | King of Bollywood", description: "Discover the extraordinary journey of Bollywood's most iconic actor, his blockbuster films, and global influence.", url: "https://shahrukhkhan.official", siteName: "Shah Rukh Khan Official", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/male-model-trendy-leather-jacket_114579-8816.jpg", alt: "Shah Rukh Khan - King of Bollywood"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Shah Rukh Khan | King of Bollywood", description: "Explore the legendary career of Bollywood's most celebrated actor and cultural icon.", images: ["http://img.b2bpic.net/free-photo/male-model-trendy-leather-jacket_114579-8816.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Shah Rukh Khan – King of Bollywood", description: "Indian Actor, Film Producer & Global Icon | Defining cinema for over three decades"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}