Chapter 9 - migrate to next.js (errors on purpose)

This commit is contained in:
2023-12-21 21:04:00 +01:00
parent de191f7e79
commit 01fc574c38
5 changed files with 453 additions and 41 deletions

12
app/layout.js Normal file
View File

@@ -0,0 +1,12 @@
export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js',
}
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}