mirror of
https://github.com/Anil-matcha/Open-Generative-AI.git
synced 2026-05-07 01:17:18 +00:00
20 lines
563 B
JavaScript
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>
|
|
);
|
|
}
|