Skip to content

Commit

Permalink
feat: add title & favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
PainterPuppets committed May 8, 2024
1 parent d269b1a commit 83f7903
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Binary file modified public/favicon.ico
Binary file not shown.
10 changes: 9 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import NashvilleBtcImage from "./nashville_btc.png";
import BrusselsBtcImage from "./brussels_btc.png";
import RainbowImage from "./rainbow.png";
import PhoneImage from "./phone.png";
import Head from "next/head";

enum Page {
Home,
Expand Down Expand Up @@ -392,5 +393,12 @@ const BrusselsPage: React.FC<{ onPageChange: Function }> = ({
);

export default function Landing() {
return <HomePage />;
return (
<>
<Head>
<title>Friends of Bitcoin</title>
</Head>
<HomePage />
</>
);
}

0 comments on commit 83f7903

Please sign in to comment.