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

fix: tailwind to check entire src tree for clases #7

Merged
merged 5 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from 4 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
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`&apos;`re excited that you`&apos;`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`&apos;`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>
)
}
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function RootLayout ({
}) {
return (
<html lang="en">
<body className='bg-gray-900 min-h-screen'>
<body className='bg-gray-dark min-h-screen'>
<SidebarLayout>
{children}
</SidebarLayout>
Expand Down
4 changes: 1 addition & 3 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ import type { Config } from 'tailwindcss'

const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
Expand Down
Loading