Skip to content

Commit

Permalink
add a favicon
Browse files Browse the repository at this point in the history
...in which rjbs pretends to understand this gatsby thing
  • Loading branch information
rjbs committed Aug 19, 2023
1 parent ed2c665 commit 566601e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,12 @@ const IndexPage = () => {

export default IndexPage;

export const Head = () => <title>Home Page</title>;
export const Head = () => {
return (
<>
<title>Home Page</title>
<link rel="icon" href="data:image/svg+xml,&lt;svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22&gt;&lt;text y=%22.9em%22 font-size=%2290%22&gt;🏤&lt;/text&gt;&lt;/svg&gt;">
</>
);
};

0 comments on commit 566601e

Please sign in to comment.