CZQM-Ops-Demo/app/layout.tsx
2024-11-14 15:41:47 -05:00

26 lines
569 B
TypeScript

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 (
<html lang="en">
<body className={inter.className}>
{children}
<Toaster />
</body>
</html>
);
}