Skip to content

Commit

Permalink
Merge pull request #2 from ZuliusRoolf/update-favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
ZuliusRoolf authored Apr 23, 2024
2 parents f410c0c + 6e21815 commit 1004802
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
Binary file removed app/favicon.ico
Binary file not shown.
20 changes: 20 additions & 0 deletions pages/_document.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import Document, { Html, Head, Main, NextScript } from 'next/document'

class MyDocument extends Document {
render() {
return (
<Html>
<Head>
<link rel="icon" href="/favicon.svg" />
{/* other head elements as needed */}
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
)
}
}

export default MyDocument
8 changes: 8 additions & 0 deletions public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1004802

Please sign in to comment.