30 lines
662 B
TypeScript
30 lines
662 B
TypeScript
import type { Metadata } from "next";
|
|
import { Space_Grotesk } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const spaceGrotesk = Space_Grotesk({
|
|
variable: "--font-space-grotesk",
|
|
subsets: ["latin"],
|
|
weight: "600",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "BlueberryOS",
|
|
description: "A modern rolling release server operating system",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html
|
|
lang="en"
|
|
className={`${spaceGrotesk.variable} h-full antialiased font-sans`}
|
|
>
|
|
<body className="min-h-full flex flex-col">{children}</body>
|
|
</html>
|
|
);
|
|
}
|