}) {
+ return (
+
+ {lines.map(([label, value]) => (
+
+ ))}
+
+ );
+}
+
+function FragmentRow({ label, value }: { label: string; value: string }) {
+ return (
+ <>
+ {label}
+
+ {value}
+
+ >
+ );
+}
diff --git a/apps/web/src/components/layout/Topbar.tsx b/apps/web/src/components/layout/Topbar.tsx
index 9cab670..f0048a0 100644
--- a/apps/web/src/components/layout/Topbar.tsx
+++ b/apps/web/src/components/layout/Topbar.tsx
@@ -2,6 +2,7 @@ import { Avatar, Badge, Button, Flex, Input } from 'antd';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faBell, faMagnifyingGlass, faBars } from '@fortawesome/free-solid-svg-icons';
import { brandTokens } from '../../lib/theme';
+import { FoundationStatus } from './FoundationStatus';
interface TopbarProps {
onToggleSidebar?: () => void;
@@ -84,8 +85,9 @@ export function Topbar({ onToggleSidebar }: TopbarProps) {
/>
- {/* Lado direito: notificações + perfil */}
+ {/* Lado direito: status fundação + notificações + perfil */}
+