add unistyles

This commit is contained in:
Aman Varshney
2025-05-07 14:29:11 +05:30
parent d09a284ce7
commit 6c269a4c5b
74 changed files with 1762 additions and 208 deletions

View File

@@ -75,13 +75,21 @@ export const TECH_OPTIONS = {
default: false,
},
{
id: "native",
name: "React Native",
description: "Expo with NativeWind",
id: "native-nativewind",
name: "React Native + NativeWind",
description: "Expo with NativeWind (Tailwind)",
icon: "/icon/expo.svg",
color: "from-purple-400 to-purple-600",
default: false,
},
{
id: "native-unistyles",
name: "React Native + Unistyles",
description: "Expo with Unistyles",
icon: "/icon/expo.svg",
color: "from-pink-400 to-pink-600",
default: false,
},
{
id: "none",
name: "No Frontend",
@@ -145,6 +153,13 @@ export const TECH_OPTIONS = {
icon: "/icon/convex.svg",
color: "from-pink-500 to-pink-700",
},
{
id: "none",
name: "No Backend",
description: "Skip backend integration (frontend only)",
icon: "⚙️",
color: "from-gray-400 to-gray-600",
},
],
database: [
{
@@ -447,7 +462,7 @@ export const PRESET_TEMPLATES = [
description: "React Native with Expo and SQLite database",
stack: {
projectName: "my-better-t-app",
frontend: ["native"],
frontend: ["native-nativewind"],
runtime: "bun",
backend: "hono",
database: "sqlite",
@@ -489,7 +504,7 @@ export const PRESET_TEMPLATES = [
description: "Complete setup with web, native, Turso, and addons",
stack: {
projectName: "my-better-t-app",
frontend: ["tanstack-router", "native"],
frontend: ["tanstack-router", "native-nativewind"],
runtime: "bun",
backend: "hono",
database: "sqlite",