diff --git a/.gitignore b/.gitignore
index b31bf87..a89f002 100644
--- a/.gitignore
+++ b/.gitignore
@@ -41,4 +41,7 @@ next-env.d.ts
# ai-docs
/planning
-/docs/m2-plan
\ No newline at end of file
+/docs/m2-plan
+
+# claude code
+.claude/
\ No newline at end of file
diff --git a/app/layout.tsx b/app/layout.tsx
index 9f276c8..0470235 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -9,6 +9,7 @@ import { RootProvider } from "fumadocs-ui/provider/next";
import { cn, constructMetadata } from "@/lib/utils";
import { Toaster } from "@/components/ui/sonner";
import { WalletProvider } from "@/components/wallet/wallet-provider";
+import { DevTools } from "@/components/dev-tools";
interface RootLayoutProps {
children: React.ReactNode;
@@ -45,6 +46,7 @@ export default function RootLayout({ children }: RootLayoutProps) {
{children}
+