import { Inter } from "next/font/google"; import "./globals.scss"; const inter = Inter({ subsets: ["latin"] }); export const metadata = { title: "Hawkband WLED", description: "Hawkband WLED command and control", }; export default function RootLayout({ children }) { return ( {children} ); }