mirror of
https://litchi.icu/ngc2207/judge4c-latest.git
synced 2025-07-13 23:34:34 +00:00
27 lines
644 B
TypeScript
27 lines
644 B
TypeScript
|
import "@/app/global.css";
|
||
|
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>
|
||
|
);
|
||
|
}
|