import './globals.css'; import type { Metadata } from 'next'; import { Inter } from 'next/font/google'; import { Toaster } from "@/components/ui/toaster"; const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { title: 'CZQM Ops Support Tool', description: 'A tool for VATCAN CZQM operational support', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}