forked from innovacion/playground
23 lines
504 B
TypeScript
23 lines
504 B
TypeScript
import type { Metadata } from 'next'
|
|
import { Inter } from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const inter = Inter({ subsets: ['latin'] })
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Image Playground - Google Generative AI',
|
|
description: 'Genera imágenes con modelos de Google Generative AI',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="es">
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
)
|
|
}
|