import React from 'react'; import { User } from '../../../types'; import { SunIcon, MoonIcon } from '../../../components/icons'; interface HeaderProps { user: User | null; workspaceUrl: string; signOutUrl: string; theme: 'light' | 'dark'; toggleTheme: () => void; } const Header: React.FC = ({ user, workspaceUrl, signOutUrl, theme, toggleTheme }) => { return (
HumanizeIQ Logo

Aura Craft Studio

); }; export default Header;