Skip to content

Commit 7d1a386

Browse files
committed
feat(homepage): make logo clickable
1 parent 43bbd3c commit 7d1a386

File tree

1 file changed

+3
-1
lines changed
  • services/homepage/src/components/ui/AppBar

1 file changed

+3
-1
lines changed

services/homepage/src/components/ui/AppBar/AppBar.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,16 @@ export function AppBar(): React.ReactElement {
2424
<Toolbar sx={{ display: "flex", justifyContent: "left" }}>
2525
<Typography
2626
color="primary"
27+
component="a"
28+
href="/"
2729
sx={(theme) => ({
2830
background: `linear-gradient(to right, ${theme.palette.primary.main}, ${theme.palette.secondary.main})`,
2931
backgroundClip: "text",
3032
color: "transparent",
3133
fontWeight: 600,
3234
fontFamily: "sans-serif",
35+
textDecoration: "none",
3336
textShadow: `1px 1px 1px white`,
34-
userSelect: "none",
3537
})}
3638
variant="h5"
3739
>

0 commit comments

Comments
 (0)