- Wordmark SVG + favicon (#FF1F8F → #00D4FF gradient) - Page title: Slate — AI App Builder - Header logo via inline component (no external font deps) - Deploy button label -> Launch - Chat placeholder + example prompt rebranded - Replace upstream accent palette with magenta primary, add cyan2 for accents - Settings tab notes upstream remains stackblitz-labs/bolt.diy
21 lines
1.0 KiB
TypeScript
21 lines
1.0 KiB
TypeScript
export function SlateWordmark({ className = '' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 132 28"
|
|
aria-label="Slate"
|
|
className={className}
|
|
>
|
|
<defs>
|
|
<linearGradient id="slate-mark-grad" x1="0" y1="0" x2="1" y2="1">
|
|
<stop offset="0%" stopColor="#FF1F8F" />
|
|
<stop offset="100%" stopColor="#00D4FF" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect x="0" y="2" width="24" height="24" rx="6" fill="url(#slate-mark-grad)" />
|
|
<path d="M7.5 18.2c0 1.6 1.4 2.6 3.4 2.6 1.9 0 3.3-.9 3.3-2.4 0-1.4-1-2-2.7-2.4l-1.3-.3c-2-.4-3.5-1.5-3.5-3.6 0-2.4 2-4.1 4.9-4.1 2.8 0 4.7 1.5 4.8 3.9h-2.2c-.1-1.3-1.1-2-2.6-2-1.5 0-2.5.7-2.5 1.9 0 1.1.9 1.7 2.5 2l1.3.3c2.3.5 3.7 1.6 3.7 3.8 0 2.6-2 4.3-5.2 4.3-3 0-5.1-1.5-5.2-4z" fill="#FFFFFF"/>
|
|
<text x="32" y="22" font-family="Inter, system-ui, -apple-system, Segoe UI, sans-serif" font-weight="700" font-size="22" fill="currentColor" letter-spacing="-0.5">Slate</text>
|
|
</svg>
|
|
);
|
|
}
|