diff --git a/examples/next-app-router/app/layout.tsx b/examples/next-app-router/app/layout.tsx index a36cde0..1ad9004 100644 --- a/examples/next-app-router/app/layout.tsx +++ b/examples/next-app-router/app/layout.tsx @@ -1,6 +1,9 @@ import type { Metadata } from "next"; import localFont from "next/font/local"; import "./globals.css"; +import TMAWrapper from "@/components/TMAWrapper"; +import { ErrorBoundary } from "@/components/ErrorBoundary"; +import { EnvUnsupported } from "@/components/EnvUnsupported"; const geistSans = localFont({ src: "./fonts/GeistVF.woff", @@ -27,8 +30,12 @@ export default function RootLayout({ - {children} + > + }> + + {children} + + ); diff --git a/examples/next-app-router/app/page.tsx b/examples/next-app-router/app/page.tsx index 584736c..10ec8a2 100644 --- a/examples/next-app-router/app/page.tsx +++ b/examples/next-app-router/app/page.tsx @@ -14,16 +14,6 @@ export default function Home() { height={38} priority /> -
    -
  1. - Get started by editing{" "} - - app/page.tsx - - . -
  2. -
  3. Save and see your changes instantly.
  4. -