Sacha VAUDEY ff63b5958a
Some checks failed
Build / build-check (pull_request) Failing after 33s
WIP: rework
2025-09-14 11:53:12 +02:00

19 lines
493 B
TypeScript

import './globals-test.css'
import type { ReactNode } from 'react'
export const metadata = {
title: 'La Banquise - Hébergement et Communauté Tech',
description: "Association d'hébergement et lab réseau pour tous les étudiants et associations de l'EPITA. Services Wiki, Gitea, Panel de jeux.",
}
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="fr">
<head />
<body>
{children}
</body>
</html>
)
}