import { Inter } from "next/font/google"; import "./globals.css"; import { FilmProvider } from "@/context/FilmContext"; import { config } from "@fortawesome/fontawesome-svg-core"; import "@fortawesome/fontawesome-svg-core/styles.css"; import Header from "@/components/shared/Header/Header"; import { TvShowsProvider } from "@/context/TvshowContext"; import Providers from "./providers"; config.autoAddCss = false; const inter = Inter({ subsets: ["latin"] }); export const metadata = { generator: "Next.js", applicationName: "Nexora", referrer: "origin-when-cross-origin", keywords: [ "Nexora", "Movies", "TV Shows", "Streaming Service", "Online Streaming", "Watch Movies", "Watch TV Shows", "Movie Streaming", "TV Show Streaming", "HD Movies", "HD TV Shows", ], authors: [{ name: "Prince Hans" }], creator: "Prince Hans", publisher: "Prince Hans", description: "Nexora is your go-to platform for streaming the latest movies and TV shows. Enjoy a seamless experience with a vast library of HD content.", charset: "UTF-8", robots: "index, follow", }; export default function RootLayout({ children }) { return (
{children} ); }