import { routes } from '@/lib/routing/RouteConfig'; import { Button } from '@/ui/Button'; import { Stack } from '@/ui/Stack'; import { Box } from '@/ui/Box'; interface HeaderActionsProps { isAuthenticated: boolean; } export function HeaderActions({ isAuthenticated }: HeaderActionsProps) { if (isAuthenticated) { return ( ); } return ( ); }