23 lines
578 B
TypeScript
23 lines
578 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "S-CLASS Dashboard",
|
|
description: "Smart Classroom Management System",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
/* TAMBAHKAN className="light" DI SINI */
|
|
<html lang="en" className="light" style={{ colorScheme: 'light' }}>
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
);
|
|
} |