Skip to content

Commit

Permalink
Update site
Browse files Browse the repository at this point in the history
  • Loading branch information
Rigidity committed Jan 20, 2025
1 parent 2040324 commit 1988901
Showing 1 changed file with 43 additions and 1 deletion.
44 changes: 43 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,49 @@ function App() {
return (
<>
<h1>Fancy Fauna</h1>
<img src={banner} style={{ borderRadius: "10px" }} />
<div
style={{
display: "flex",
alignItems: "center",
justifyContent: "center",
}}
>
<a
style={{
color: "black",
fontSize: "2rem",
display: "inline-flex",
alignItems: "center",
padding: "20px",
gap: "6px",
borderRadius: "20px",
boxShadow: "0 0 10px 0 rgba(0, 0, 0, 0.1)",
marginBottom: "20px",
}}
href="https://mintgarden.io/collections/fancy-fauna-col1f90cpk9msmsf9zmecqcr8h0xu40jyr66j5d5aj336qkf50knxc3srq2d6j"
target="_blank"
>
<img
src="https://mintgarden.io/mint-logo.svg"
style={{ width: "30px", height: "30px" }}
alt="MintGarden logo"
/>
Click below to mint
</a>
</div>
<a
href="https://mintgarden.io/collections/fancy-fauna-col1f90cpk9msmsf9zmecqcr8h0xu40jyr66j5d5aj336qkf50knxc3srq2d6j"
target="_blank"
>
<img
src={banner}
style={{
borderRadius: "10px",
boxShadow: "0 0 10px 0 rgba(0, 0, 0, 0.1)",
maxWidth: "100%",
}}
/>
</a>
</>
);
}
Expand Down

0 comments on commit 1988901

Please sign in to comment.