2026-03-22 14:14:05 +00:00
|
|
|
import type { Metadata } from "next";
|
2026-06-19 09:13:32 +00:00
|
|
|
import { Bitcount } from "next/font/google";
|
2026-03-22 14:14:05 +00:00
|
|
|
import "./globals.css";
|
2026-06-19 09:13:32 +00:00
|
|
|
import Header from "@/components/header";
|
2026-03-22 14:14:05 +00:00
|
|
|
|
2026-06-19 09:13:32 +00:00
|
|
|
const bitCount = Bitcount({
|
|
|
|
|
variable: "--font-bitcount",
|
2026-03-22 14:14:05 +00:00
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2026-06-19 09:13:32 +00:00
|
|
|
title: "unemployment heaven",
|
|
|
|
|
description: "AI sucks. but who cares, i'll never let it take my job",
|
2026-03-22 14:14:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
return (
|
2026-06-19 09:13:32 +00:00
|
|
|
<html lang="en" className={`${bitCount.variable} h-full antialiased`}>
|
|
|
|
|
<head></head>
|
2026-06-18 18:21:43 +00:00
|
|
|
<body className="min-h-full flex flex-col">
|
|
|
|
|
<Header />
|
2026-06-19 09:13:32 +00:00
|
|
|
<div className="content-center flex">{children}</div>
|
2026-06-18 18:21:43 +00:00
|
|
|
</body>
|
2026-03-22 14:14:05 +00:00
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|