completionId: cgen-e91c0a807f1c44b8b634b150c606d06e
cgen-e91c0a807f1c44b8b634b150c606d06e
This commit is contained in:
parent
1ffb125632
commit
35cf0a622b
1 changed files with 14 additions and 6 deletions
|
|
@ -96,12 +96,20 @@ export default function ArmSwitcher() {
|
|||
/>
|
||||
|
||||
{/* Temporary Logo - Simple geometric shape */}
|
||||
<div
|
||||
className="relative h-8 w-8 rounded flex items-center justify-center font-bold text-white transition-all duration-500"
|
||||
style={{ backgroundColor: currentArm.color }}
|
||||
>
|
||||
{currentArm.label[0].toUpperCase()}
|
||||
</div>
|
||||
{currentArm.id === "devlink" ? (
|
||||
<img
|
||||
src="https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2F9a96b43cbd7b49bb9d5434580319c793?format=webp&width=800"
|
||||
alt={currentArm.label}
|
||||
className="relative h-8 w-8 rounded transition-all duration-500"
|
||||
/>
|
||||
) : (
|
||||
<div
|
||||
className="relative h-8 w-8 rounded flex items-center justify-center font-bold text-white transition-all duration-500"
|
||||
style={{ backgroundColor: currentArm.color }}
|
||||
>
|
||||
{currentArm.label[0].toUpperCase()}
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Animated border indicator */}
|
||||
<div
|
||||
|
|
|
|||
Loading…
Reference in a new issue