/** * @file components/layout/BrandLogo.tsx * @description Client/Server component rendering the application brand logo and title header. */ import React from "react"; /** * 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 (
Flowstate Logo

Flowstate

Workspace Edition

); }