Skip to content

Commit

Permalink
Add logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Ancocodet committed Feb 26, 2024
1 parent 63c7f19 commit 8fd7ecf
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
12 changes: 7 additions & 5 deletions src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ import { Html, Head, Main, NextScript } from 'next/document'
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
<Head>
<link rel="icon" href="/favicon.ico" sizes="any"/>
</Head>
<body>
<Main/>
<NextScript/>
</body>
</Html>
)
}
7 changes: 6 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@ export default function Home() {
</ul>
</div>
<div className="w-full h-12 bg-gray-800 flex flex-row justify-between py-1 px-5 z-20 fixed">
<h1 className="text-2xl font-bold text-white text-center">WapuuGotchi Collection</h1>
<div className="flex flex-row gap-2">
<img src="/logo.svg" className="h-8 w-8 py-2"/>
<h1 className="text-2xl font-bold text-white text-center">
WapuuGotchi Collection
</h1>
</div>
<ul className="flex-row gap-3 pr-5 hidden md:flex">
{
collections.map((collection) => {
Expand Down

0 comments on commit 8fd7ecf

Please sign in to comment.