group sidebar, navbar tweaks
This commit is contained in:
parent
e4cfd92bb2
commit
70ef9e1836
|
@ -10,9 +10,9 @@ import router from 'next/router'
|
||||||
import { userProfileItem } from './nav-bar'
|
import { userProfileItem } from './nav-bar'
|
||||||
|
|
||||||
const mobileGroupNavigation = [
|
const mobileGroupNavigation = [
|
||||||
{ name: 'About', key: 'about', icon: ClipboardIcon },
|
|
||||||
{ name: 'Markets', key: 'markets', icon: HomeIcon },
|
{ name: 'Markets', key: 'markets', icon: HomeIcon },
|
||||||
{ name: 'Leaderboard', key: 'leaderboards', icon: TrophyIcon },
|
{ name: 'Leaderboard', key: 'leaderboards', icon: TrophyIcon },
|
||||||
|
{ name: 'About', key: 'about', icon: ClipboardIcon },
|
||||||
]
|
]
|
||||||
|
|
||||||
const mobileGeneralNavigation = [
|
const mobileGeneralNavigation = [
|
||||||
|
|
|
@ -6,13 +6,12 @@ import { ProfileSummary } from './profile-menu'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import TrophyIcon from 'web/lib/icons/trophy-icon'
|
import TrophyIcon from 'web/lib/icons/trophy-icon'
|
||||||
import { SignInButton } from '../sign-in-button'
|
import { SignInButton } from '../sign-in-button'
|
||||||
import CornerDownRightIcon from 'web/lib/icons/corner-down-right-icon'
|
|
||||||
import NotificationsIcon from '../notifications-icon'
|
import NotificationsIcon from '../notifications-icon'
|
||||||
import { SidebarItem } from './sidebar'
|
import { SidebarItem } from './sidebar'
|
||||||
import { buildArray } from 'common/util/array'
|
import { buildArray } from 'common/util/array'
|
||||||
import { User } from 'common/user'
|
import { User } from 'common/user'
|
||||||
import { Row } from '../layout/row'
|
import { Row } from '../layout/row'
|
||||||
import { Col } from '../layout/col'
|
import { Spacer } from '../layout/spacer'
|
||||||
|
|
||||||
const groupNavigation = [
|
const groupNavigation = [
|
||||||
{ name: 'Markets', key: 'markets', icon: HomeIcon },
|
{ name: 'Markets', key: 'markets', icon: HomeIcon },
|
||||||
|
@ -47,16 +46,7 @@ export function GroupSidebar(props: {
|
||||||
className={clsx('flex max-h-[100vh] flex-col', className)}
|
className={clsx('flex max-h-[100vh] flex-col', className)}
|
||||||
>
|
>
|
||||||
<ManifoldLogo className="pt-6" twoLine />
|
<ManifoldLogo className="pt-6" twoLine />
|
||||||
<Row className="pl-2">
|
<Row className="pl-2 text-xl text-indigo-700 sm:mt-3">{groupName}</Row>
|
||||||
<Col className="flex justify-center">
|
|
||||||
<CornerDownRightIcon className=" h-6 w-6 text-indigo-700" />
|
|
||||||
</Col>
|
|
||||||
<Col>
|
|
||||||
<div className={' text-2xl text-indigo-700 sm:mb-1 sm:mt-3'}>
|
|
||||||
{groupName}
|
|
||||||
</div>
|
|
||||||
</Col>
|
|
||||||
</Row>
|
|
||||||
|
|
||||||
<div className=" min-h-0 shrink flex-col items-stretch gap-1 pt-6 lg:flex ">
|
<div className=" min-h-0 shrink flex-col items-stretch gap-1 pt-6 lg:flex ">
|
||||||
{user ? (
|
{user ? (
|
||||||
|
@ -84,6 +74,8 @@ export function GroupSidebar(props: {
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
|
|
||||||
|
<Spacer h={2} />
|
||||||
|
|
||||||
{props.joinOrAddQuestionsButton}
|
{props.joinOrAddQuestionsButton}
|
||||||
</nav>
|
</nav>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user