diff --git a/next-env.d.ts b/next-env.d.ts
index 1b3be08..830fb59 100644
--- a/next-env.d.ts
+++ b/next-env.d.ts
@@ -1,5 +1,6 @@
///
///
+///
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 657aae2..cc57c3f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -5,10 +5,10 @@ import { AppRouterCacheProvider } from '@mui/material-nextjs/v15-appRouter';
import { Bai_Jamjuree, Inter } from 'next/font/google';
import { type Metadata } from 'next';
import { GoogleAnalytics } from '@next/third-parties/google';
-import Link from 'next/link';
import theme from '@src/utils/theme';
import { ToastProvider } from '@src/components/toast/ToastProvider';
+import NavBar from '@src/components/NavBar';
const inter = Inter({
subsets: ['latin'],
@@ -57,17 +57,15 @@ export default function RootLayout({
>
- {children}
+
+
+ {children}
+
{process.env.NEXT_PUBLIC_VERCEL_ENV === 'production' && (
)}
-