flowstate/app/components/layout/BrandLogo.tsx
Chneemann a60851ac07
All checks were successful
Deploy Flowstate to VPS / deploy (push) Successful in 1m27s
refactor(lib): consolidate services, types, utils, and actions into lib folder and update import paths
2026-08-23 16:44:18 +02:00

33 lines
945 B
TypeScript

/**
* @file app/components/layout/BrandLogo.tsx
* @description Client/Server component rendering the application brand logo and title header.
*/
/**
* Renders the brand logo image along with the application name and edition subtitle.
*
* @returns {JSX.Element} The rendered brand logo component.
*/
export default function BrandLogo() {
return (
<div className="flex items-center gap-3 mr-1 md:mr-0">
<div className="w-9 h-9">
<img
src="/logo.png"
alt="Flowstate Logo"
className="w-full h-full object-contain"
/>
</div>
<div className="hidden md:flex">
<div>
<h1 className="text-lg font-bold tracking-widest flex items-center gap-1.5">
Flowstate
</h1>
<p className="text-xs text-foreground-muted font-medium tracking-widest">
Workspace Edition
</p>
</div>
</div>
</div>
);
}