update buy handler

This commit is contained in:
Ayush Acharjya
2024-10-26 18:15:55 +01:00
parent dc7a44551b
commit 02893578f9
11 changed files with 995 additions and 112 deletions

View File

@@ -4,6 +4,7 @@ import './globals.css';
import { Inter } from 'next/font/google';
import './globals.css';
import { Toaster } from '@/components/ui/toaster';
const inter = Inter({ subsets: ['latin'] });
@@ -30,7 +31,10 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
<body className={inter.className}>
<main>{children}</main>
<Toaster />
</body>
</html>
);
}