Skip to content

Commit 8e903d8

Browse files
chore(next): type metadata and suppressHydrationWarning in RootLayout
1 parent 0616a11 commit 8e903d8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

next-app/app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
export const metadata = { title: 'AGI/ASI Interface', description: 'AI Readiness MVP' };
1+
export const metadata = { title: 'AGI/ASI Interface', description: 'AI Readiness MVP' } satisfies import('next').Metadata;
22
export default function RootLayout({ children }: { children: React.ReactNode }) {
33
return (
44
<html lang="en">
5-
<body className="min-h-screen bg-gray-50 text-slate-900 antialiased">
5+
<body className="min-h-screen bg-gray-50 text-slate-900 antialiased" suppressHydrationWarning>
66
<div className="mx-auto max-w-5xl p-4">{children}</div>
77
</body>
88
</html>

0 commit comments

Comments
 (0)