Spaces:
Runtime error
Runtime error
| import type { Metadata } from "next"; | |
| import { Cairo } from "next/font/google"; | |
| import "./globals.css"; | |
| const cairo = Cairo({ | |
| variable: "--font-cairo", | |
| subsets: ["arabic", "latin"], | |
| display: "swap", | |
| }); | |
| export const metadata: Metadata = { | |
| title: { | |
| default: "ููุฑุชุฑููุณ", | |
| template: "%s | ููุฑุชุฑููุณ", | |
| }, | |
| description: "ู ูุตุฉ ูุงููููุฉ ุนุฑุจูุฉ ูุชูุธูู ุงูุนู ูุงุก ูู ููุงุชูู ูู Courtrix.", | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="ar" dir="rtl" className={`${cairo.variable} h-full antialiased`}> | |
| <body className="min-h-full flex flex-col">{children}</body> | |
| </html> | |
| ); | |
| } | |