Skip to content

Commit 6d68e73

Browse files
committed
feat: Add favicon link to the head of the layout for improved branding
1 parent 98e8275 commit 6d68e73

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

public/favicon.svg

Lines changed: 1 addition & 0 deletions
Loading

src/app/layout.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ const atkinsonHyperlegibleMono = localFont({
2828
export default function RootLayout({ children }: React.PropsWithChildren) {
2929
return (
3030
<html className={atkinsonHyperlegibleMono.variable}>
31+
<head>
32+
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
33+
</head>
3134
<body className="font-mono font-normal bg-hacktoberfest-blue">
3235
<ViewTransition>
3336
{children}

0 commit comments

Comments
 (0)