aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--thallium-frontend/src/pages/DesignSystem.tsx20
1 files changed, 20 insertions, 0 deletions
diff --git a/thallium-frontend/src/pages/DesignSystem.tsx b/thallium-frontend/src/pages/DesignSystem.tsx
new file mode 100644
index 0000000..f5b091c
--- /dev/null
+++ b/thallium-frontend/src/pages/DesignSystem.tsx
@@ -0,0 +1,20 @@
+import Card from "../components/Card";
+
+const DesignSystem = () => {
+ return (
+ <>
+ <h1>Design System</h1>
+ <Card title="Card">
+ <p>This is a card component.</p>
+ </Card>
+ <Card title="Seamless Card" seamless>
+ <p>
+ This is a seamless card component.
+ </p>
+ </Card>
+
+ </>
+ );
+};
+
+export default DesignSystem;