Spaces:
Sleeping
Sleeping
File size: 946 Bytes
c25aec3 58ac475 d93d789 58ac475 d93d789 58ac475 d93d789 58ac475 c25aec3 d93d789 58ac475 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import type {Metadata} from 'next';
import './globals.css';
import { Toaster } from "@/components/ui/toaster";
export const metadata: Metadata = {
title: 'JourneyAI',
description: 'AI-Powered MCQ and Summary Generation',
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;500&display=swap" rel="stylesheet" />
</head>
<body className="font-body antialiased" suppressHydrationWarning={true}>
{children}
<Toaster />
</body>
</html>
);
}
|