Skip to content

Commit 6e99d6f

Browse files
committed
feat: wrap children in a main tag for improved semantic structure
1 parent 79dc99e commit 6e99d6f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default function RootLayout({
8181
<body
8282
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
8383
>
84-
{children}
84+
<main>{children}</main>
8585
</body>
8686
</html>
8787
);

0 commit comments

Comments
 (0)