diff --git a/app/layout.tsx b/app/layout.tsx index 1f3e64a..38d30fa 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -5,8 +5,7 @@ import { Nav } from '@/components/nav' import { SwRegistrar } from '@/components/sw-registrar' import { BackendHealthCheck } from '@/components/backend-health-check' import { SyncStatusBanner } from '@/components/ui/sync-status-banner' -import { UnsupportedChainBanner } from '@/components/wallet/unsupported-chain-banner' - +import { ThemeProvider } from '@/components/theme-provider' export const metadata: Metadata = { title: { default: 'GuildPass', @@ -23,20 +22,26 @@ export const metadata: Metadata = { export default function RootLayout({ children }: { children: React.ReactNode }) { return ( - + - - {/* Registers the service worker for dashboard offline caching */} - - {/* One-time startup check so a misconfigured/unreachable backend - surfaces immediately, not just after a user action fails */} - - {/* Offline/Degraded status banner */} - -