turbopack and app router; very annoying to work with!
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import type {Metadata} from 'next'
|
||||
import 'normalize.css'
|
||||
import './global.css'
|
||||
import Container from './components/container'
|
||||
import Title from './components/title'
|
||||
|
||||
export default function RootLayout({children,}: Readonly<{children: React.ReactNode}>) {
|
||||
return (
|
||||
<html lang='en'>
|
||||
<body>
|
||||
<Title />
|
||||
<Container>
|
||||
{children}
|
||||
</Container>
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user