Files
adminpanel/src/app/layout.tsx

36 lines
780 B
TypeScript
Raw Normal View History

2025-12-19 01:18:25 +05:30
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { AuthProvider } from "@/context/AuthContext";
2025-12-19 01:18:25 +05:30
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Re-Quest Admin",
description: "Admin dashboard for Re-Quest Platform",
2025-12-19 01:18:25 +05:30
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<AuthProvider>{children}</AuthProvider>
2025-12-19 01:18:25 +05:30
</body>
</html>
);
}