Skip to content

Commit

Permalink
Improves about section
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwellfortney committed Oct 22, 2021
1 parent 77a6a9c commit 7a526b6
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 23 deletions.
43 changes: 35 additions & 8 deletions components/About/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,53 @@ export default function About() {
>
<h2 className="self-start text-4xl font-extrabold ">about</h2>

<div className="flex flex-col items-center w-11/12">
<div className="flex flex-col items-start w-11/12">
<p className="mt-8 text-lg font-medium">
The primary goal of{" "}
<span className="font-black">Rarity Radar</span> is to
provide the most seamless, intuitve, and up-to-date platform
for crypto investors, creators, and enthusiasts to track the
rarity of their NFTs as well as upcoming NFTs.
rarity of any NFT.
</p>

<p className="mt-8 text-lg font-medium">
<span className="font-black">Rarity Radar</span> was founded
on the ideals of honesty, transparency, and openness. The
majority of our code is open-source, and can be viewed here.{" "}
<span className="font-black">Rarity Radar</span> only has
once source of income, {`"`}featured collections
majority of our code is open-source, and can be viewed on{" "}
<Link href="https://github.com/maxwellfortney/rarity-radar">
<a
target="_blank"
className="font-black text-transparent transition-opacity duration-300 hover:opacity-70 bg-clip-text bg-gradient-to-br from-blue-500 to-cyan-400"
>
Github
</a>
</Link>
. <span className="font-black">Rarity Radar</span> only has
once source of revenue, {`"`}featured collections
{`"`}. If you would like to support the development
directly, you can donate to us{" "}
directly, you can{" "}
<Link href="/donate">
<a>here</a>
<a
target="_blank"
className="font-black text-transparent transition-opacity duration-300 hover:opacity-70 bg-clip-text bg-gradient-to-br from-blue-500 to-cyan-400"
>
donate to us
</a>
</Link>
.
. If you can{"'"}t support us financially, but want to give
us hand, please follow us on social media, the links are
below. Oh, and why not tell a friend :)
</p>

<p className="mt-8 text-lg font-medium">
<span className="font-black">Rarity Radar</span> primarily
uses a trait normalized rarity score to calculate the rank
of every individual NFT. There really is no perfect method
to calculate the rarity of an NFT, as this can sometimes be
subjective; however we feel we provide a thorough analysis
with detailed analytics in order to provide our users with
the highest chance of finding that <span>💎</span> in the
rough.
</p>
</div>
</div>
Expand Down
5 changes: 4 additions & 1 deletion components/NFT/NFTFull.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ export default function NFTFull({
isLoadingImage ? "block" : "hidden"
} h-56 flex items-center justify-center w-full`}
>
<Loader color={"border-slightDark"} />
<Loader
color={"border-slightDark"}
className="py-16"
/>
</div>
<div className="flex flex-col w-full p-3">
<div className="flex justify-between w-full">
Expand Down
33 changes: 19 additions & 14 deletions pages/donate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,25 @@ import { CSSTransition } from "react-transition-group";

export default function Donate() {
return (
<div className="flex flex-col items-center justify-center flex-1 w-11/12">
<div className="flex flex-col items-start">
<DonationType
type="ethereum"
address="0xee61C516C9E4468E6F2C4Eb53b8520aDb68c0634"
/>
<DonationType
type="bitcoin"
address="0xee61C516C9E4468E6F2C4Eb53b8520aDb68c0634"
/>
<DonationType
type="solana"
address="ELL2uxweAAx83QZyEfWEZwa8ZHEyNG2N2nYhkxzyAwcZ"
/>
<div className="flex flex-col items-center flex-1 w-11/12 animate-fadeIn">
<h2 className="self-start mt-12 text-4xl font-extrabold text-white">
donate
</h2>
<div className="flex flex-col items-center justify-center flex-1 w-11/12">
<div className="flex flex-col items-start">
<DonationType
type="ethereum"
address="0xee61C516C9E4468E6F2C4Eb53b8520aDb68c0634"
/>
<DonationType
type="bitcoin"
address="3LBuiwFYAbnE3DayqVZftkHpFmFsCRTvjC"
/>
<DonationType
type="solana"
address="ELL2uxweAAx83QZyEfWEZwa8ZHEyNG2N2nYhkxzyAwcZ"
/>
</div>
</div>
</div>
);
Expand Down
1 change: 1 addition & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ body {
font-family: "Gilroy", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue,
sans-serif;
scroll-behavior: smooth;
}

a {
Expand Down

1 comment on commit 7a526b6

@vercel
Copy link

@vercel vercel bot commented on 7a526b6 Oct 22, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.