COURTRIX / src /app /layout.tsx
Ali-Developments's picture
Upload 125 files
ad79323 verified
Raw
History Blame Contribute Delete
729 Bytes
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>
);
}