layout.js 382 B

1234567891011121314151617
  1. import { Inter } from "next/font/google";
  2. import "./globals.scss";
  3. const inter = Inter({ subsets: ["latin"] });
  4. export const metadata = {
  5. title: "Hawkband WLED",
  6. description: "Hawkband WLED command and control",
  7. };
  8. export default function RootLayout({ children }) {
  9. return (
  10. <html lang="en">
  11. <body className={inter.className}>{children}</body>
  12. </html>
  13. );
  14. }