diff --git a/frontend/src/components/workspace/welcome.tsx b/frontend/src/components/workspace/welcome.tsx index 021ed122..4fa9ec74 100644 --- a/frontend/src/components/workspace/welcome.tsx +++ b/frontend/src/components/workspace/welcome.tsx @@ -41,12 +41,10 @@ export function Welcome({ `✨ ${t.welcome.createYourOwnSkill} ✨` ) : (
- - {t.welcome.greeting} - +
+ {isUltra ? "🚀" : "👋"} +
+ {t.welcome.greeting}
)} @@ -61,7 +59,13 @@ export function Welcome({ )} ) : ( -
+
+ {t.welcome.description.includes("\n") ? ( +
{t.welcome.description}
+ ) : ( +

{t.welcome.description}

+ )} +
)} );