feat(FE-40): use MainDrawer component in root layout

This commit is contained in:
ValdiANS
2025-10-01 13:44:02 +07:00
parent 037e4776a8
commit 19b7c53ec2
+3 -2
View File
@@ -1,6 +1,7 @@
import type { Metadata, Viewport } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
import '@/app/globals.css';
import MainDrawer from '@/components/MainDrawer';
const inter = Inter({
variable: '--font-inter',
@@ -26,7 +27,7 @@ export default function RootLayout({
return (
<html lang='en'>
<body className={`${inter.variable} antialiased font-inter`}>
{children}
<MainDrawer>{children}</MainDrawer>
</body>
</html>
);