diff --git a/apps/cli/src/utils/render-title.ts b/apps/cli/src/utils/render-title.ts index e87d8e1..bd9c52d 100644 --- a/apps/cli/src/utils/render-title.ts +++ b/apps/cli/src/utils/render-title.ts @@ -38,7 +38,7 @@ export const renderTitle = () => { if (terminalWidth < titleWidth) { const simplifiedTitle = ` ╔══════════════════╗ - ║ Better T-Stack ║ + ║ Better T Stack ║ ╚══════════════════╝ `; console.log( diff --git a/apps/web/src/app/(home)/_components/stack-builder.tsx b/apps/web/src/app/(home)/_components/stack-builder.tsx index affc0f5..57953d2 100644 --- a/apps/web/src/app/(home)/_components/stack-builder.tsx +++ b/apps/web/src/app/(home)/_components/stack-builder.tsx @@ -966,7 +966,7 @@ const StackBuilder = () => { const shareToTwitter = () => { const text = encodeURIComponent( - "Check out this cool tech stack I configured with Create Better T-Stack!\n\n", + "Check out this cool tech stack I configured with Create Better T Stack!\n\n", ); if (typeof window !== "undefined") { const url = encodeURIComponent(window.location.href); @@ -1355,15 +1355,17 @@ const StackBuilder = () => { getBadgeColors(category), )} > - + {tech.icon !== "" && ( + + )} {tech.name} , ); @@ -1390,7 +1392,9 @@ const StackBuilder = () => { getBadgeColors(category), )} > - + {tech.icon !== "" && ( + + )} {tech.name} , ); @@ -1846,11 +1850,13 @@ const StackBuilder = () => {
- + {tech.icon !== "" && ( + + )} option.id !== "none", ); + const nativeFrontendOptions = TECH_OPTIONS.nativeFrontend.filter( + (option) => option.id !== "none", + ); + const combinedFrontendOptions = [ + ...webFrontendOptions, + ...nativeFrontendOptions, + ]; + const backendOptions = TECH_OPTIONS.backend.filter( (option) => option.id !== "none", ); @@ -128,7 +136,10 @@ export default function HomePage() {
- + diff --git a/apps/web/src/lib/constant.ts b/apps/web/src/lib/constant.ts index 11ef8bd..6a428d7 100644 --- a/apps/web/src/lib/constant.ts +++ b/apps/web/src/lib/constant.ts @@ -19,7 +19,7 @@ export const TECH_OPTIONS = { id: "none", name: "No API", description: "No API layer (API routes disabled)", - icon: "🚫", + icon: "", color: "from-gray-400 to-gray-600", }, ], @@ -85,7 +85,7 @@ export const TECH_OPTIONS = { id: "none", name: "No Web Frontend", description: "No web-based frontend", - icon: "⚙️", + icon: "", color: "from-gray-400 to-gray-600", default: false, }, @@ -111,7 +111,7 @@ export const TECH_OPTIONS = { id: "none", name: "No Native Frontend", description: "No native mobile frontend", - icon: "📱", + icon: "", color: "from-gray-400 to-gray-600", default: false, }, @@ -174,7 +174,7 @@ export const TECH_OPTIONS = { id: "none", name: "No Backend", description: "Skip backend integration (frontend only)", - icon: "⚙️", + icon: "", color: "from-gray-400 to-gray-600", }, ], @@ -212,7 +212,7 @@ export const TECH_OPTIONS = { id: "none", name: "No Database", description: "Skip database integration", - icon: "🚫", + icon: "", color: "from-gray-400 to-gray-600", }, ], @@ -243,7 +243,7 @@ export const TECH_OPTIONS = { id: "none", name: "No ORM", description: "Skip ORM integration", - icon: "🚫", + icon: "", color: "from-gray-400 to-gray-600", }, ], @@ -287,7 +287,7 @@ export const TECH_OPTIONS = { id: "none", name: "Basic Setup", description: "No cloud DB integration", - icon: "💻", + icon: "", color: "from-gray-400 to-gray-600", default: true, }, @@ -305,7 +305,7 @@ export const TECH_OPTIONS = { id: "false", name: "No Auth", description: "Skip authentication", - icon: "🔓", + icon: "", color: "from-red-400 to-red-600", }, ], @@ -414,7 +414,7 @@ export const TECH_OPTIONS = { id: "false", name: "No Git", description: "Skip Git initialization", - icon: "🚫", + icon: "", color: "from-red-400 to-red-600", }, ], @@ -423,7 +423,7 @@ export const TECH_OPTIONS = { id: "true", name: "Install Dependencies", description: "Install packages automatically", - icon: "📥", + icon: "", color: "from-green-400 to-green-600", default: true, }, @@ -431,7 +431,7 @@ export const TECH_OPTIONS = { id: "false", name: "Skip Install", description: "Skip dependency installation", - icon: "⏭️", + icon: "", color: "from-yellow-400 to-yellow-600", }, ],