1
0
mirror of https://github.com/Fayorg/calendrier-avant.git synced 2026-05-27 17:18:38 +02:00

fix to style

This commit is contained in:
timhaller
2023-12-11 13:28:30 +01:00
parent 462f951318
commit 03e91d766e
2 changed files with 27 additions and 1 deletions

View File

@@ -1,12 +1,19 @@
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import '@styles/global.css';
const inter = Inter({ subsets: ['latin'] });
import type { Metadata } from "next";
export const metadata: Metadata = {
title: 'Calendrier de l\'avent',
description: 'Calendrier de l\'avent de maths de la 3M03',
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<head><title></title><meta name="viewport" content="viewport-fit=cover" /></head>
<body className={inter.className}>{children}</body>
</html>
);