We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0616a11 commit 8e903d8Copy full SHA for 8e903d8
1 file changed
next-app/app/layout.tsx
@@ -1,8 +1,8 @@
1
-export const metadata = { title: 'AGI/ASI Interface', description: 'AI Readiness MVP' };
+export const metadata = { title: 'AGI/ASI Interface', description: 'AI Readiness MVP' } satisfies import('next').Metadata;
2
export default function RootLayout({ children }: { children: React.ReactNode }) {
3
return (
4
<html lang="en">
5
- <body className="min-h-screen bg-gray-50 text-slate-900 antialiased">
+ <body className="min-h-screen bg-gray-50 text-slate-900 antialiased" suppressHydrationWarning>
6
<div className="mx-auto max-w-5xl p-4">{children}</div>
7
</body>
8
</html>
0 commit comments