import React from 'react'; import clsx from 'clsx'; import {Link} from 'react-router-dom'; import { AppBar, Box, Drawer, IconButton, Toolbar, Typography, useMediaQuery, List, ListItem, ListItemText, Divider, } from '@material-ui/core'; import ListItemLink from '../ListItemLink'; import MenuIcon from '@material-ui/icons/Menu'; import ChevronLeftIcon from '@material-ui/icons/ChevronLeft'; import ChevronRightIcon from '@material-ui/icons/ChevronRight'; import {makeStyles, useTheme} from '@material-ui/core/styles'; import AccountButton from './AccountButton'; import unicornLogo from '../../assets/img/logo1.png'; const useStyles = makeStyles((theme) => ({ '@global': { ul: { margin: 0, padding: 0, listStyle: 'none', }, }, appBar: { color: '#322f32', 'background-color': 'rgba(255,255,255,0.0) !important', boxShadow: 'none !important', // borderBottom: `1px solid ${theme.palette.divider}`, padding: '10px', marginBottom: '3rem', }, drawer: { width: 240, flexShrink: 0, }, drawerPaper: { width: 240, }, hide: { display: 'none', }, toolbar: { flexWrap: 'wrap', }, toolbarTitle: { fontFamily: 'Rubik', fontSize: '0px', flexGrow: 1, }, link: { textTransform: 'uppercase', color: '#322f32', fontSize: '16px', marginTop: '15px', margin: theme.spacing(10, 1, 1, 2), textDecoration: 'none', '&:hover': { textDecoration: 'none', }, }, brandLink: { textDecoration: 'none', color: '#322f32', '&:hover': { textDecoration: 'none', }, }, })); const Nav = () => { const matches = useMediaQuery('(min-width:900px)'); const classes = useStyles(); const theme = useTheme(); const [open, setOpen] = React.useState(false); const handleDrawerOpen = () => { setOpen(true); }; const handleDrawerClose = () => { setOpen(false); }; return ( {matches ? ( <> {/* Unicorn Money */} Unicorn Finance {/* LC Presale */} Home Dashboard Fairyland Magicroom Nodes {/* Rebates */}
Slots Raffle Space Shooter King Of Colosseum
Magik Ice Cream Beefy Yield Wolf
Bonds
Treasury DAO Nodes Rewards
Leaderboard Buy NFTs with Avax Buy NFTs with Unicorns Strategy Stats Roadmap Merch Beginner Videos
{/* Voting */} Docs
) : ( <> unicorn.money
{theme.direction === 'rtl' ? ( ) : ( )}
{/* LC Presale */} {/* */} {/* */} {/* Game - Burn for Fun */} {/* Game - Slots */} {/* Game - King of Colosseum */} {/* Magik Vaults */} {/* Ice Cream Vaults */} {/* Beefy Vaults Yield Wolf Vaults */} {/* */} {/**/} {/* Treasury Wallet DAO Wallet Nodes Rewards Wallet Buy NFTs with Avax Buy NFTs with Unicorns */} {/* */} {/* */} {/* */} {/* */} Merch {/* Voting */} Docs
)}
); }; export default Nav;