Files
2026-08-07 09:40:16 +03:30

23 lines
408 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
import Toaster from "@/components/Toaster";
export const metadata: Metadata = {
title: "پنل مدیریت حکم‌شو",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="fa" dir="rtl">
<body>
{children}
<Toaster />
</body>
</html>
);
}