perf: add notification toasts

This commit is contained in:
Junyan Qin
2025-05-09 22:36:13 +08:00
parent 337090e7cb
commit df700ec7c2
17 changed files with 131 additions and 71 deletions
+5 -1
View File
@@ -1,5 +1,6 @@
import './global.css';
import type { Metadata } from 'next';
import { Toaster } from '@/components/ui/sonner';
export const metadata: Metadata = {
title: 'LangBot',
@@ -13,7 +14,10 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={``}>{children}</body>
<body className={``}>
{children}
<Toaster />
</body>
</html>
);
}