18 lines
394 B
JavaScript
18 lines
394 B
JavaScript
import './globals.css'
|
|
import { Inter } from 'next/font/google'
|
|
|
|
const inter = Inter({ subsets: ['latin'] })
|
|
|
|
export const metadata = {
|
|
title: 'Waku Metrics',
|
|
description: 'Metrics dashboard for the waku network and ecosystem',
|
|
}
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
)
|
|
}
|