Skip to content

Commit

Permalink
chore: add playground, descriptive name for cn
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-stumpf committed Nov 18, 2024
1 parent fc5718a commit fc9d692
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Metadata } from "next";
import "./globals.css";
import { dystopian, inter } from "fonts";
import { cn } from "lib/cn";
import { cn } from "lib/css-utils";

export const metadata: Metadata = {
title: "Guildhall",
Expand Down
14 changes: 14 additions & 0 deletions src/app/playground/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const Playground = () => {
return (
<main className="text-8xl">
<h1 className="font-display">Hello, Guild!</h1>
<h2 className="font-bold font-display">Hello, Guild!</h2>
<p>Test, one, two, three...</p>
<p className="font-sans">
Test, <strong>one</strong>, <em>two</em>, three...
</p>
</main>
);
};

export default Playground;
File renamed without changes.

0 comments on commit fc9d692

Please sign in to comment.