We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e665983 commit 1460d99Copy full SHA for 1460d99
1 file changed
src/app/exercise/layout.tsx
@@ -1,5 +1,6 @@
1
'use client';
2
3
+import Link from 'next/link';
4
import { ExerciseContextProvider } from '@/state/ExerciseContext';
5
import Sidebar from '@/components/AppShell/Sidebar';
6
import SuccessBanner from '@/components/shared/SuccessBanner';
@@ -9,7 +10,7 @@ export default function ExerciseLayout({ children }: { children: React.ReactNode
9
10
<ExerciseContextProvider>
11
<div id="app">
12
<header>
- <h1>0xVRIG</h1>
13
+ <h1><Link href="/" style={{ color: 'inherit', textDecoration: 'none' }}>0xVRIG</Link></h1>
14
<div id="badges"></div>
15
</header>
16
<div id="app-body">
0 commit comments