import { useState } from 'react';
import { Icon, Text, Icons } from 'react-basics';
import classNames from 'classnames';
import { Dashboard, Logo, Profile, User, Users, Clock, Globe } from 'components/icons';
import NavGroup from './NavGroup';
import styles from './NavBar.module.css';
const { ChevronDown, Search } = Icons;
const analytics = [
{ key: 'dashboard', label: 'Dashboard', url: '/dashboard', icon: },
{ key: 'realtime', label: 'Realtime', url: '/realtime', icon: },
{ key: 'queries', label: 'Queries', url: '/queries', icon: },
];
const settings = [
{ key: 'websites', label: 'Websites', url: '/settings/websites', icon: },
{ key: 'users', label: 'Users', url: '/settings/users', icon: },
{ key: 'teams', label: 'Teams', url: '/settings/teams', icon: },
];
export default function NavBar() {
const [minimized, setMinimized] = useState(false);
const handleMinimize = () => setMinimized(state => !state);
return (
);
}