Seems you don't have MetaMask installed. Please, install and reload the page.
+{">"}
+Chat
+Keystore
+Seems you don't have MetaMask installed. Please, install and reload the page.
+Wallet connected: {wallet}
} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 43fdb4d..c678653 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; +import { Menu } from "@/app/components/Menu"; const inter = Inter({ subsets: ["latin"] }); @@ -16,7 +17,10 @@ export default function RootLayout({ }) { return ( - {children} + + + {children} + ); } diff --git a/src/app/page.tsx b/src/app/page.tsx index 4be0bc2..5d3db45 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,7 +4,6 @@ import { Waku } from "@/app/components/Waku"; import { useWaku } from "@/hooks"; import { DebugInfo } from "@/services/waku"; -export const dynamic = "force-static"; export default function Home() { const { onSend, @@ -15,7 +14,7 @@ export default function Home() { } = useWaku(); return ( -