mirror of https://github.com/Lapikud/tipilan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
626 B
29 lines
626 B
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 2025", |
|
description: "TipiLAN 2025 – 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> |
|
); |
|
}
|
|
|