-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from ivalshamkya/feat/button
Feat/button
- Loading branch information
Showing
19 changed files
with
282 additions
and
136 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,59 @@ | ||
import Pagination from "@/components/Pagination"; | ||
|
||
|
||
export default function Installation() { | ||
return ( | ||
<> | ||
<h2 className="text-4xl font-bold">Installation</h2> | ||
|
||
<div className="mt-8 text-lg font-light leading-relaxed"> | ||
These React components use{' '} | ||
<a | ||
className="mx-0.5 underline" | ||
target="_blank" | ||
href="https://tailwindcss.com/" | ||
> | ||
tailwind | ||
</a>{' '} | ||
for styling and{' '} | ||
<a | ||
className="mx-0.5 underline" | ||
target="_blank" | ||
href="https://react-icons.github.io/react-icons/" | ||
> | ||
react-icons | ||
</a>{' '} | ||
for icons (feel free to use any other icons), so make sure you got them | ||
installed. | ||
<br /> | ||
<br /> | ||
Now choose any component you find useful, copy it to your project and | ||
adjust it so it fulfills your needs. | ||
<br /> | ||
<br /> | ||
Keep in mind that these are YOUR components. It's on you to make | ||
them more reusable and accessible. I created this to help you get | ||
started with neobrutalism.{' '} | ||
<a | ||
href="https://www.youtube.com/watch?v=eXRlVpw1SIQ&ab_channel=Joshtriedcoding" | ||
target="_blank" | ||
className="mx-0.5 underline" | ||
> | ||
This video | ||
</a>{' '} | ||
can help you with creating more reusable components. | ||
</div> | ||
|
||
<Pagination | ||
prev={{ | ||
name: 'Introduction', | ||
path: '/docs', | ||
}} | ||
next={{ | ||
name: 'Accordion', | ||
path: '/docs/components/Accordion', | ||
}} | ||
/> | ||
</> | ||
) | ||
} |
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.