diff --git a/mobile/app/(tabs)/sandbox.tsx b/mobile/app/(tabs)/sandbox.tsx
index fe34de6..218ac51 100644
--- a/mobile/app/(tabs)/sandbox.tsx
+++ b/mobile/app/(tabs)/sandbox.tsx
@@ -1,10 +1,52 @@
-import { Text, View } from "react-native"
+import { ScrollView, View } from "react-native"
+import { Button, Card, Input, Typography } from "../../src/components"
+import { colors, spacing } from "../../src/theme/tokens"
export default function SandboxScreen() {
return (
-
- Component Sandbox
- Typography, Button, Input, and Card previews will live here.
-
+
+ Component Sandbox
+
+
+
+ Typography
+ H1 Discoverly
+ H2 Taste the Match
+ H3 Fresh picks nearby
+ Body copy for content and supporting descriptions.
+
+ Caption and helper content
+
+
+
+
+
+
+ Buttons
+
+
+
+
+
+
+
+
+
+
+ Inputs
+
+
+
+
+
+
+
)
}
diff --git a/mobile/src/theme/tokens.ts b/mobile/src/theme/tokens.ts
index 4d1df4d..afe6561 100644
--- a/mobile/src/theme/tokens.ts
+++ b/mobile/src/theme/tokens.ts
@@ -6,6 +6,7 @@ export const colors = {
text: "#1D1D1F",
muted: "#6B7280",
border: "#E5E7EB",
+ success: "#16A34A",
error: "#D92D20",
disabled: "#C9CDD4",
onPrimary: "#FFFFFF",