Rename and copilot and add mascot

This commit is contained in:
akhisud3195 2025-07-11 20:55:34 +05:30
parent 3c2bde91b0
commit 9e44dcb939
5 changed files with 22 additions and 5 deletions

View file

@ -147,3 +147,19 @@ body {
scrollbar-width: thin;
scrollbar-color: #9ca3af transparent;
}
@keyframes float {
0% { transform: translateX(0); }
50% { transform: translateX(24px); }
100% { transform: translateX(0); }
}
@keyframes pulse-mascot {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
/* Combine float (side-to-side) and pulse (scale) */
.animate-float {
animation: float 5s ease-in-out infinite, pulse-mascot 4s infinite;
}

View file

@ -274,9 +274,9 @@ export const Copilot = forwardRef<{ handleUserMessage: (message: string) => void
<div className="flex items-center gap-3">
<div className="flex items-center gap-2">
<div className="text-sm font-medium text-gray-900 dark:text-gray-100">
COPILOT
SKIPPER
</div>
<Tooltip content="Ask copilot to help you build and modify your workflow">
<Tooltip content="A copilot to help you build and modify your workflow">
<InfoIcon className="w-4 h-4 text-gray-400 cursor-help" />
</Tooltip>
</div>

View file

@ -924,7 +924,7 @@ export function WorkflowEditor({
className="gap-2 px-4 bg-indigo-600 hover:bg-indigo-700 text-white font-semibold text-sm"
startContent={showCopilot ? null : <Sparkles size={16} />}
>
{showCopilot ? "Hide Copilot" : "Copilot"}
{showCopilot ? "Hide Skipper" : "Skipper"}
</Button>
</div>}
{!isLive && <>
@ -961,7 +961,7 @@ export function WorkflowEditor({
className="gap-2 px-4 bg-indigo-600 hover:bg-indigo-700 text-white font-semibold text-sm"
startContent={showCopilot ? null : <Sparkles size={16} />}
>
{showCopilot ? "Hide Copilot" : "Copilot"}
{showCopilot ? "Hide Skipper" : "Skipper"}
</Button>
</>}
</div>