Skip to content

Commit

Permalink
Make background colors simpler
Browse files Browse the repository at this point in the history
  • Loading branch information
komzweb committed Jan 7, 2022
1 parent 36ca300 commit afd56b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const Home: NextPage = () => {

<Image src={topImage} alt={process.env.NEXT_PUBLIC_NFT_NAME} />

<div className="bg-pink-600 py-8">
<div className="bg-gray-800 py-8">
<Prose>
<h1 className="text-5xl font-bold text-gray-100 mb-2">
{process.env.NEXT_PUBLIC_NFT_NAME}
Expand All @@ -36,19 +36,19 @@ const Home: NextPage = () => {
</Prose>
</div>

<div className="bg-green-600 py-8">
<div className="py-8">
<Prose>
<Minting />
</Prose>
</div>

<div className="bg-yellow-600 py-8">
<div className="bg-gray-800 py-8">
<Prose>
<Faq />
</Prose>
</div>

<div className="bg-blue-600 py-8">
<div className="py-8">
<Prose>
<Roadmap />
</Prose>
Expand Down

0 comments on commit afd56b2

Please sign in to comment.