Skip to content

Commit 1460d99

Browse files
committed
issue 1 fix
1 parent e665983 commit 1460d99

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/app/exercise/layout.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use client';
22

3+
import Link from 'next/link';
34
import { ExerciseContextProvider } from '@/state/ExerciseContext';
45
import Sidebar from '@/components/AppShell/Sidebar';
56
import SuccessBanner from '@/components/shared/SuccessBanner';
@@ -9,7 +10,7 @@ export default function ExerciseLayout({ children }: { children: React.ReactNode
910
<ExerciseContextProvider>
1011
<div id="app">
1112
<header>
12-
<h1>0xVRIG</h1>
13+
<h1><Link href="/" style={{ color: 'inherit', textDecoration: 'none' }}>0xVRIG</Link></h1>
1314
<div id="badges"></div>
1415
</header>
1516
<div id="app-body">

0 commit comments

Comments
 (0)