import type { Metadata } from 'next' import './globals.css' import { Providers } from './providers' import { Toaster } from 'sonner' export const metadata: Metadata = { title: { default: 'MOPC Platform', template: '%s | MOPC', }, description: 'Monaco Ocean Protection Challenge - Jury Voting Platform', icons: { icon: '/images/MOPC-blue-small.png', }, } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (