ignore folder
This commit is contained in:
19
app/layout.tsx
Normal file
19
app/layout.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import type { ReactNode } from "react";
|
||||
import "@/app/globals.css";
|
||||
import AppToasts from "@/components/layout/AppToasts";
|
||||
|
||||
export const metadata = {
|
||||
title: "UTMS Admin",
|
||||
description: "Production-ready admin dashboard for UTMS backend"
|
||||
};
|
||||
|
||||
export default function RootLayout({ children }: { children: ReactNode }) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>
|
||||
{children}
|
||||
<AppToasts />
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user