import React from 'react'; interface AppWordmarkProps { accessibleLabel?: string; className?: string; } /** NetMesh brand wordmark — just the "NetMesh" text. */ export const AppWordmark: React.FC = ({ accessibleLabel, className }) => ( NetMesh ); export default AppWordmark;