completionId: cgen-30279c9ebb56408aa535006d1d5a39df
cgen-30279c9ebb56408aa535006d1d5a39df
This commit is contained in:
parent
23c458b68a
commit
9d16a1a3be
1 changed files with 16 additions and 8 deletions
|
|
@ -102,38 +102,46 @@ export default function AeThexOSLogo({
|
||||||
|
|
||||||
{/* Central OS Symbol */}
|
{/* Central OS Symbol */}
|
||||||
<g transform="translate(32, 35)">
|
<g transform="translate(32, 35)">
|
||||||
|
{/* Bright white glow background for the symbol */}
|
||||||
|
<circle cx="0" cy="-2" r="8" fill="#ffffff" opacity="0.15" />
|
||||||
|
|
||||||
|
{/* Main symbol lines - using white for visibility */}
|
||||||
<line
|
<line
|
||||||
x1="-6"
|
x1="-6"
|
||||||
y1="6"
|
y1="6"
|
||||||
x2="0"
|
x2="0"
|
||||||
y2="-8"
|
y2="-8"
|
||||||
stroke={`url(#${gradient.id})`}
|
stroke="#ffffff"
|
||||||
strokeWidth="2"
|
strokeWidth="2.5"
|
||||||
strokeLinecap="round"
|
strokeLinecap="round"
|
||||||
filter={`url(#${glowId})`}
|
filter={`url(#${glowId})`}
|
||||||
|
opacity="0.95"
|
||||||
/>
|
/>
|
||||||
<line
|
<line
|
||||||
x1="6"
|
x1="6"
|
||||||
y1="6"
|
y1="6"
|
||||||
x2="0"
|
x2="0"
|
||||||
y2="-8"
|
y2="-8"
|
||||||
stroke={`url(#${gradient.id})`}
|
stroke="#ffffff"
|
||||||
strokeWidth="2"
|
strokeWidth="2.5"
|
||||||
strokeLinecap="round"
|
strokeLinecap="round"
|
||||||
filter={`url(#${glowId})`}
|
filter={`url(#${glowId})`}
|
||||||
|
opacity="0.95"
|
||||||
/>
|
/>
|
||||||
<line
|
<line
|
||||||
x1="-3"
|
x1="-3"
|
||||||
y1="0"
|
y1="0"
|
||||||
x2="3"
|
x2="3"
|
||||||
y2="0"
|
y2="0"
|
||||||
stroke={`url(#${gradient.id})`}
|
stroke="#ffffff"
|
||||||
strokeWidth="2"
|
strokeWidth="2.5"
|
||||||
strokeLinecap="round"
|
strokeLinecap="round"
|
||||||
filter={`url(#${glowId})`}
|
filter={`url(#${glowId})`}
|
||||||
|
opacity="0.95"
|
||||||
/>
|
/>
|
||||||
<circle cx="-6" cy="6" r="1.5" fill="#a78bfa" opacity="0.9" />
|
{/* Accent circles with bright colors */}
|
||||||
<circle cx="6" cy="6" r="1.5" fill="#60a5fa" opacity="0.9" />
|
<circle cx="-6" cy="6" r="2" fill="#fbbf24" opacity="1" />
|
||||||
|
<circle cx="6" cy="6" r="2" fill="#06b6d4" opacity="1" />
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue