stripe
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user