This commit is contained in:
Timo Knuth
2025-10-15 00:03:05 +02:00
parent bccf771ffc
commit cd3ee5fc8f
15 changed files with 1096 additions and 186 deletions

View File

@@ -1,9 +1,7 @@
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import '@/styles/globals.css';
import { ToastContainer } from '@/components/ui/Toast';
const inter = Inter({ subsets: ['latin'] });
import AuthProvider from '@/components/SessionProvider';
export const metadata: Metadata = {
title: 'QR Master - Create Custom QR Codes in Seconds',
@@ -33,8 +31,10 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>
{children}
<body className="font-sans">
<AuthProvider>
{children}
</AuthProvider>
<ToastContainer />
</body>
</html>