import localFont from "next/font/local"; import Script from "next/script"; import "swiper/swiper-bundle.css"; import "./globals.css"; import QueryProvider from "@/providers/QueryProvider"; // FONTS - All local fonts const aeroport = localFont({ src: "../fonts/Aeroport.otf", variable: "--font-aeroport", }); const roboto = localFont({ src: [ { path: "../fonts/roboto/Roboto-Light.ttf", weight: "300", style: "normal", }, { path: "../fonts/roboto/Roboto-Regular.ttf", weight: "400", style: "normal", }, { path: "../fonts/roboto/Roboto-Bold.ttf", weight: "700", style: "normal", }, ], variable: "--font-roboto", }); const mw = localFont({ src: "../fonts/merriweather/Merriweather-Bold.ttf", weight: "700", variable: "--font-mw", }); const mw_sans = localFont({ src: [ { path: "../fonts/merriweather-sans/MerriweatherSans-Light.ttf", weight: "300", style: "normal", }, { path: "../fonts/merriweather-sans/MerriweatherSans-Regular.ttf", weight: "400", style: "normal", }, { path: "../fonts/merriweather-sans/MerriweatherSans-Bold.ttf", weight: "700", style: "normal", }, ], variable: "--font-mwsans", }); const alexandria = localFont({ src: "../fonts/alexandria/Alexandria-Regular.woff2", variable: "--font-alexandria", }); export const metadata = { title: "Turkmen TV", }; interface IProps { children: React.ReactNode; } export default function RootLayout({ children }: IProps) { return ( {children} ); }