Open-Generative-AI/app/layout.js
Gal Inbar 96dfd0fbab fix(layout): suppress hydration warning caused by browser extensions
Browser extensions (Grammarly, etc.) inject attributes into <body>
after SSR, causing React hydration mismatches. suppressHydrationWarning
silences the noise without affecting functionality.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-29 10:50:20 +03:00

20 lines
588 B
JavaScript

import './globals.css';
import { Inter } from "next/font/google";
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata = {
title: 'Open Generative AI — Free AI Image & Video Studio',
description: 'Generate AI images and videos using 200+ models — Flux, Midjourney, Kling, Veo, Seedance and more. Free open-source alternative to Higgsfield AI.',
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.variable} suppressHydrationWarning>{children}</body>
</html>
);
}