Open-Generative-AI/app/layout.js

20 lines
563 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}>{children}</body>
</html>
);
}