-
Notifications
You must be signed in to change notification settings - Fork 462
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adjust and test project setup (#1548)
* chore: remove deprecated husky command * chore: add playground, descriptive name for cn * feat: add dark theme * ci: force npm i * fix: import `cn` properly and remove `--force` from the install script * chore: adjust filename case * fix: rename cn import * test: add theme test to playground * fix: update imports --------- Co-authored-by: BrickheadJohnny <[email protected]>
- Loading branch information
1 parent
c42fea7
commit f242b41
Showing
11 changed files
with
1,592 additions
and
2,248 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
const Playground = () => { | ||
return ( | ||
<main className="text-8xl"> | ||
<h1 className="font-display"> | ||
Hello, Guild!, page for testing frameworks, configs | ||
</h1> | ||
<h2 className="font-bold font-display">Hello, Guild!</h2> | ||
<p>Test, one, two, three...</p> | ||
<p className="border font-sans"> | ||
Test, <strong>one</strong>, <em>two</em>, three... | ||
</p> | ||
<p className="font-bold text-rose-500 dark:text-violet-500"> | ||
In dark mode I appear violet, in light we go rose | ||
</p> | ||
</main> | ||
); | ||
}; | ||
|
||
export default Playground; |
Oops, something went wrong.