Skip to content

Commit

Permalink
Add 4 lines in layout.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
AtlantisPleb committed Aug 28, 2024
1 parent c68ab59 commit 85171f5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import type { Metadata } from "next"
import { jetbrainsMono } from '@/lib/fonts'
import "./globals.css"
import { siteConfig } from "./siteConfig"
import ResetHUDButton from "@/components/ResetHUDButton"

export const metadata: Metadata = {
metadataBase: new URL("https://openagents.com"),
Expand Down Expand Up @@ -38,6 +39,9 @@ export default function RootLayout({
<body
className={`${jetbrainsMono.variable} min-h-screen scroll-auto antialiased selection:bg-white selection:text-black dark:bg-black font-mono`}
>
<div className="fixed top-4 right-4 z-50">
<ResetHUDButton />
</div>
{children}
</body>
</html>
Expand Down

0 comments on commit 85171f5

Please sign in to comment.