/* eslint-disable @next/next/no-page-custom-font */ import clsx from "clsx"; import "./globals.css"; import "react-toastify/dist/ReactToastify.css"; import type {Metadata} from "next"; import {Inter} from "next/font/google"; import {Almarai} from "next/font/google"; const almarai = Almarai({ subsets: ["arabic"], weight: ["300", "400", "700", "800"], }); const inter = Inter({subsets: ["latin"]}); export const metadata: Metadata = { title: "EnCoach", description: "We are the best service and the only one", }; export default function RootLayout({children}: {children: React.ReactNode}) { return ( {children} ); }