[Valentino Heman Budiarto] 9d4cc8bfed Frontend
2026-02-19 18:14:19 +07:00

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>
);
}