Skip to content

Commit

Permalink
chore: sidestep linter
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Oli Evans <[email protected]>
  • Loading branch information
olizilla committed Oct 23, 2023
1 parent 057fc68 commit c3aaab5
Showing 1 changed file with 30 additions and 28 deletions.
58 changes: 30 additions & 28 deletions src/app/docs/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,36 @@ import Link from 'next/link'

export default function Docs () {
return (
<div className='flex flex-col justify-start items-center min-h-full w-full text-left text-white p-8'>
<h1 className='text-3xl mb-8 font-bold'>Welcome to the w3up web console beta!</h1>
<p className='mb-4 w-4/5'>
We're excited that you're using the w3up web console. This is a web-based interface
to <Link href='https://github.com/web3-storage/w3up'>w3up</Link>, designed to make it easy
for you to upload data to the Filecoin network.
</p>
<p className='mb-4 min-w-fit w-4/5'>
If you are a developer interested in integrating with w3up, please check out:
</p>
<ul className='mb-4 w-4/5 list-disc pl-8'>
<li>
Our command line tool <Link href='https://github.com/web3-storage/w3cli#getting-started'>w3</Link>
</li>
<li>
Our JavaScript library <Link href='https://github.com/web3-storage/w3up/tree/main/packages/w3up-client#about'>w3up-client</Link>
</li>
<li>
Our library of headless React, Vue and SolidJS widgets <Link href='https://beta.ui.web3.storage/'>w3ui</Link>
</li>
</ul>
<p className='mb-4 w-4/5'>
Otherwise, visit the <Link href='https://github.com/web3-storage/w3up'>w3up</Link> repository
where you'll find documentation and source code for the w3up protocol. You may
also be interested in reading the <Link href='https://github.com/web3-storage/specs'>w3up specifications</Link> and
learning more about <Link href='https://github.com/web3-storage/w3infra'>the operational infrastructure code</Link> that
powers our implementation of w3up.
</p>
<div className='w-full flex flex-col justify-start items-center font-mono'>
<div className='py-8 text-left text-white max-w-4xl'>
<h1 className='text-2xl mb-8 font-bold'>Welcome to the w3up console</h1>
<p className='mb-4 w-4/5'>
This is a web-based interface
to <Link href='https://github.com/web3-storage/w3up'>w3up</Link>, designed to make it easy
for you to upload data to the Filecoin network.
</p>
<p className='mb-4 min-w-fit w-4/5'>
If you are interested in integrating with w3up, please check out:
</p>
<ul className='mb-4 w-4/5 list-disc pl-8'>
<li>
Our command line tool <Link href='https://github.com/web3-storage/w3cli#getting-started'>w3</Link>
</li>
<li>
Our JavaScript library <Link href='https://github.com/web3-storage/w3up/tree/main/packages/w3up-client#about'>w3up-client</Link>
</li>
<li>
Our library of headless React, Vue and SolidJS widgets <Link href='https://beta.ui.web3.storage/'>w3ui</Link>
</li>
</ul>
<p className='mb-4 w-4/5'>
Otherwise, visit the <Link href='https://github.com/web3-storage/w3up'>w3up</Link> repository
for the documentation and source code for the w3up protocol. You may
also be interested in reading the <Link href='https://github.com/web3-storage/specs'>w3up specifications</Link> and
learning more about <Link href='https://github.com/web3-storage/w3infra'>the operational infrastructure code</Link> that
powers our implementation of w3up.
</p>
</div>
</div>
)
}

0 comments on commit c3aaab5

Please sign in to comment.