Skip to content

Commit 20525d9

Browse files
committed
Make logo and text a link to home.
1 parent 169c136 commit 20525d9

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

src/components/libresplit/AppNav.tsx

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,16 @@ export function AppNav() {
4141

4242
function LeftNav() {
4343
return (
44-
<div className="flex items-center gap-2">
45-
<img
46-
src="https://raw.githubusercontent.com/LibreSplit/LibreSplit/refs/heads/main/assets/libresplit.svg"
47-
alt="LibreSplit Logo"
48-
className="w-8"
49-
/>
50-
<span className="text-xl font-semibold">LibreSplit</span>
51-
</div>
44+
<Link to="/">
45+
<div className="flex items-center gap-2">
46+
<img
47+
src="https://raw.githubusercontent.com/LibreSplit/LibreSplit/refs/heads/main/assets/libresplit.svg"
48+
alt="LibreSplit Logo"
49+
className="w-8"
50+
/>
51+
<span className="text-xl font-semibold">LibreSplit</span>
52+
</div>
53+
</Link>
5254
);
5355
}
5456

0 commit comments

Comments
 (0)