-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sections extracted to its own component
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
components/sections/SectionMint/SectionMintBottom/SectionMintBottom.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import Image from 'next/image' | ||
|
||
// Components | ||
import AngledContentStripe from '@/components/shared/AngledContentStripe' | ||
|
||
const SectionMintBottom = () => { | ||
return ( | ||
<AngledContentStripe color="blue"> | ||
<div className="mx-auto flex max-w-[820px] flex-col px-5 py-4 xs:flex-row"> | ||
<p className="text-md max-w-auto basis shrink grow pt-2"> | ||
NFTs are like digital collector's items, and by | ||
claiming them, you embrace the fusion of history and | ||
innovation, where Julie de Graag's artistic ingenuity | ||
meets the blockchain's immutability. | ||
<br /> | ||
<br /> | ||
<span className="text-lg"> | ||
The{' '} | ||
<span className="font-bold"> | ||
Sitting Cats | ||
<sup>NFT</sup> | ||
</span>{' '} | ||
welcomes you to explore, own, and be a part of this | ||
artistic adventure. | ||
</span> | ||
</p> | ||
<figure className="sx:mr-[unset] mx-auto mt-4 h-auto w-6 min-w-[120px] shrink-0 grow xs:ml-4 xs:h-full md:mt-0"> | ||
<Image | ||
className="relative xs:top-[-1.5rem]" | ||
alt="paw" | ||
width="120" | ||
height="133" | ||
src="/paw-light-blue.png" | ||
/> | ||
</figure> | ||
</div> | ||
</AngledContentStripe> | ||
) | ||
} | ||
|
||
export default SectionMintBottom |