2024-11-02 10:01:02 +00:00
|
|
|
import "@/app/globals.css";
|
2024-11-02 09:38:38 +00:00
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
|
|
|
const inter = Inter({ subsets: ["latin"], variable: "--font-sans" });
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
title: "Judge4c",
|
|
|
|
description:
|
|
|
|
"A full-stack, open-source online judge platform designed to elevate college programming education",
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
}: Readonly<{
|
|
|
|
children: React.ReactNode;
|
|
|
|
}>) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
|
|
|
<body className={cn("font-sans antialiased", inter.variable)}>
|
|
|
|
{children}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
);
|
|
|
|
}
|