diff --git a/.env b/.env
index c62eabf..a0168b3 100644
--- a/.env
+++ b/.env
@@ -1,2 +1,2 @@
-BUILD_SERVER_BASE_URL=
+BUILD_SERVER_BASE_URL=https://playground.test.aelf.dev
GA_TAG=
\ No newline at end of file
diff --git a/app/layout.tsx b/app/layout.tsx
index 01f0a33..d326648 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -2,7 +2,7 @@ import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ThemeProvider } from "@/components/theme-provider";
-import { PropsWithChildren } from "react";
+import { PropsWithChildren, Suspense } from "react";
import TopMenu from "@/components/top-menu";
import clsx from "clsx";
import { GoogleAnalytics } from "@next/third-parties/google";
@@ -32,7 +32,9 @@ export default function RootLayout({ children }: PropsWithChildren) {
disableTransitionOnChange
>
- {children}
+
+ {children}
+