import type { Metadata } from "next"; import { Bitcount } from "next/font/google"; import "./globals.css"; import Header from "@/components/header"; const bitCount = Bitcount({ variable: "--font-bitcount", subsets: ["latin"], }); export const metadata: Metadata = { title: "unemployment heaven", description: "AI sucks. but who cares, i'll never let it take my job", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (