Skip to content

Commit

Permalink
Fix missing layout
Browse files Browse the repository at this point in the history
  • Loading branch information
bastienlc committed Sep 20, 2024
1 parent 19508c2 commit 5aed079
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions frontend/apps/web/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
export const metadata = {
title: 'My App',
description: 'Generated by create next app',
}

export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}

0 comments on commit 5aed079

Please sign in to comment.