spokane-bitcoin-club/app/layout.js

17 lines
329 B
JavaScript

export const metadata = {
title: 'Spokane Bitcoin Club',
description: 'Generated by Next.js',
}
export default function RootLayout({ children }) {
return (
<html lang="en">
<body style={{margin: '0px'}}>
<main className="app">
{children}
</main>
</body>
</html>
)
}