33 lines
732 B
TypeScript
33 lines
732 B
TypeScript
import type { Metadata } from 'next'
|
|
import { Inter, JetBrains_Mono } from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const inter = Inter({
|
|
subsets: ['latin'],
|
|
variable: '--font-inter',
|
|
display: 'swap',
|
|
})
|
|
|
|
const jetbrainsMono = JetBrains_Mono({
|
|
subsets: ['latin'],
|
|
variable: '--font-jetbrains-mono',
|
|
display: 'swap',
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Upload GLTF',
|
|
description: 'Interface de depot securise pour fichiers 3D (.gltf) avec versionnement automatique sur Git',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="fr" className={`${inter.variable} ${jetbrainsMono.variable}`}>
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|