'use client'; import Footer from '@/components/Footer'; import MobileMenu from '@/components/MobileMenu'; import Nav from '@/components/Nav'; import MainProvider from '@/providers/MainProvider'; import localFont from 'next/font/local'; import React, { PropsWithChildren } from 'react'; 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 layout = ({ children }: PropsWithChildren) => { return (

Turkmen TV

); }; export default layout;