Skip to content

Commit

Permalink
test: add theme test to playground
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-stumpf committed Nov 19, 2024
1 parent 64859bd commit 8e27201
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/app/playground/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
const Playground = () => {
return (
<main className="text-8xl">
<h1 className="font-display">Hello, Guild!</h1>
<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>
);
};
Expand Down

0 comments on commit 8e27201

Please sign in to comment.