23 lines
408 B
TypeScript
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>
|
|
);
|
|
}
|