import type { Metadata, Viewport } from "next";
import "./globals.css";

export const viewport: Viewport = {
  themeColor: "#000000",
  width: "device-width",
  initialScale: 1,
  maximumScale: 5,
};

export const metadata: Metadata = {
  title: "PK Movies — Download Latest Movies & Web Series in HD, 4K",
  description:
    "Download latest Bollywood, Hollywood, South Indian movies and web series in 480p, 720p, 1080p and 4K quality.",
  manifest: "/site.webmanifest",
  icons: {
    icon: "/logo.png",
    apple: "/logo.png",
  },
  openGraph: {
    title: "PK Movies — Download Latest Movies & Web Series in HD, 4K",
    description:
      "Download latest Bollywood, Hollywood, South Indian movies and web series in 480p, 720p, 1080p and 4K quality.",
    type: "website",
    url: "https://pkmovies.online",
    siteName: "PK Movies",
    images: [
      {
        url: "/logo.png",
        width: 512,
        height: 512,
        alt: "PK Movies",
      },
    ],
  },
  twitter: {
    card: "summary_large_image",
    title: "PK Movies — Download Latest Movies & Web Series in HD, 4K",
    description:
      "Download latest Bollywood, Hollywood, South Indian movies and web series in 480p, 720p, 1080p and 4K quality.",
    images: ["/logo.png"],
  },
  verification: {
    google: "YOUR_GOOGLE_SITE_VERIFICATION_TOKEN",
  },
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en" className="dark bg-black">
      <head>
        <meta name="color-scheme" content="dark" />
      </head>
      <body className="bg-black text-white antialiased min-h-screen selection:bg-red-600 selection:text-white" suppressHydrationWarning>
        {children}
      </body>
    </html>
  );
}
