import {Inter} from "next/font/google"; import "./globals.css"; const inter = Inter({subsets: ["latin"]}); export const metadata = { title: "Progressive Web Application", description: "Made by Firdaous El Halafi, Hajar Rahmouni, Thibault Fouchet & Nathan Marye", } export default function Layout({children}) { return ( {children} ); }