import './globals.css' import { Exo } from 'next/font/google' import Link from 'next/link' import Image from "next/image"; const exo = Exo({ subsets: ['latin'] }) export const metadata = { title: 'Government of Alure Regions', description: 'The official website of the Government of Alure Regions', } export default function RootLayout({ children }) { return (
{children} ) }