Add files via upload

This commit is contained in:
jasonMPM
2026-03-05 16:21:00 -06:00
committed by GitHub
parent 1569f2e635
commit f27fb5fca4
2 changed files with 28 additions and 25 deletions

View File

@@ -26,17 +26,18 @@ export default function ProjectList({ onRegisterNewProject }) {
return (
<div className="flex flex-col h-full">
{/* Header — logo + wordmark + new project button */}
<div className="flex items-center gap-2.5 px-3 py-2.5 border-b border-surface-border flex-shrink-0 pl-10">
{/* Header — taller to give logo more presence */}
<div className="flex items-center gap-3 px-4 py-4 border-b border-surface-border flex-shrink-0 pl-10">
<img
src="/logo.png"
alt="FabDash logo"
className="w-8 h-8 object-contain rounded flex-shrink-0"
className="w-12 h-12 object-contain rounded flex-shrink-0"
onError={e => { e.target.style.display = 'none' }}
/>
<div className="flex flex-col leading-tight min-w-0">
<span className="text-gold font-black text-sm tracking-widest uppercase">FabDash</span>
<span className="text-text-muted/50 text-[9px] tracking-wide">Fabrication Dashboard</span>
<div className="flex flex-col justify-center min-w-0">
<span className="text-base font-black tracking-widest uppercase leading-none">
<span className="text-gold">FAB</span><span className="text-white">DASH</span>
</span>
</div>
<div className="ml-auto flex-shrink-0">
<Button size="sm" onClick={() => setShowModal(true)}>+ Project</Button>