Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 17:54:27 +00:00
2 changed files with 7 additions and 46 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -52,7 +52,7 @@ export default function LandingPage() {
]}
avatarText="Trusted by millions worldwide"
buttons={[
{ text: "Explore Career", href: "#career" },
{ text: "Watch Iconic Moments", href: "#career" },
{ text: "Learn More", href: "#about" }
]}
buttonAnimation="slide-up"