| 1234567891011121314151617 |
- 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 (
- <html lang="en">
- <body className={inter?.className}>{children}</body>
- </html>
- );
- }
|