import type { Metadata } from "next"; import "./globals.css"; import localFont from "next/font/local"; import SwitchingBackground from "@/components/switching-background"; import CursorEffect from "@/components/cursor-effect"; const frutiger = localFont({ src: [ { path: "./frutiger.woff", weight: "normal", style: "normal", }, { path: "./frutiger-bold.woff", weight: "bold", style: "normal", }, ], variable: "--font-frutiger", }); export const metadata: Metadata = { title: "Gabriel Kaszewski's Blog", description: "A personal blog by Gabriel Kaszewski", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (