Skip to content

Commit 452d6bb

Browse files
fix(cli): update frontend choice hints and names for native options
1 parent e583a7f commit 452d6bb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

apps/cli/src/prompts/frontend.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export async function getFrontendChoice(
9999
{
100100
value: "native-uniwind" as const,
101101
label: "Uniwind",
102-
hint: "Use Tailwind CSS for React Native",
102+
hint: "Fastest Tailwind bindings for React Native with HeroUI Native",
103103
},
104104
{
105105
value: "native-unistyles" as const,

apps/web/src/lib/constant.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export const TECH_OPTIONS: Record<
108108
nativeFrontend: [
109109
{
110110
id: "native-bare",
111-
name: "React Native + Bare",
111+
name: "Expo + Bare",
112112
description: "Expo with StyleSheet (no styling library)",
113113
icon: `${ICON_BASE_URL}/expo.svg`,
114114
color: "from-blue-400 to-blue-600",
@@ -117,16 +117,16 @@ export const TECH_OPTIONS: Record<
117117
},
118118
{
119119
id: "native-uniwind",
120-
name: "React Native + Uniwind",
121-
description: "Expo with Uniwind (Tailwind CSS for React Native)",
120+
name: "Expo + Uniwind",
121+
description: "Fastest Tailwind bindings for React Native with HeroUI Native",
122122
icon: `${ICON_BASE_URL}/expo.svg`,
123123
color: "from-purple-400 to-purple-600",
124124
className: "invert-0 dark:invert",
125125
default: false,
126126
},
127127
{
128128
id: "native-unistyles",
129-
name: "React Native + Unistyles",
129+
name: "Expo + Unistyles",
130130
description: "Expo with Unistyles (type-safe styling)",
131131
icon: `${ICON_BASE_URL}/expo.svg`,
132132
color: "from-pink-400 to-pink-600",

0 commit comments

Comments
 (0)