Files
tipilan/src/app/layout.tsx
2026-05-01 11:17:36 +03:00

30 lines
626 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import type { Metadata } from "next";
import { Work_Sans } from "next/font/google";
import "./globals.css";
import "material-symbols";
const workSans = Work_Sans({
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "TipiLAN 2026",
description: "TipiLAN 2026 Eesti suurim tudengite korraldatud LAN!",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html suppressHydrationWarning>
<body
className={`${workSans.className} antialiased bg-[#EEE5E5] dark:bg-[#0E0F19]`}
>
{children}
</body>
</html>
);
}