Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HOW TO USE Section #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion components/Howtouse.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,31 @@
import React from 'react'

function Howtouse() {
const style={
height:"auto",
color:"white",
backgroundColor:"black",
padding:"40px",
}
const steps="text-white p-2 flex md:flex-col md:text-center md:justify-center items-center flex-row md:text-left"
const bigNum="w-auto md:text-7xl text-[11vw] mx-[12vw] md:mx-auto"
const CustButton="border-0 bg-transparent m-0 text-teal-400 inline p-[4px]"

return (
<div>Howtouse</div>
<div style={style}>
<div className='underline decoration-solid underline-offset-8 decoration-teal-400 w-full text-3xl pb-6'>
How to use?
</div>
<div className="flex md:flex-row justify-around pt-0 text-l flex-col text-l">
<div className={steps}>
<div className={bigNum}> 01</div>
<p>Click on <button className={CustButton}> Create </button> button</p>
</div>
<div className={steps}><div className={bigNum}> 02 </div><p><button className={CustButton}> Upload </button> or Select Image</p></div>
<div className={steps}><div className={bigNum}> 03 </div><p><button className={CustButton}> Apply </button> the Style and Mint NFT</p></div>
</div>
</div>

)
}

Expand Down
Loading