Skip to content

Commit

Permalink
Revert "🪦 Max Chiswick"
Browse files Browse the repository at this point in the history
This reverts commit 1459fba.
  • Loading branch information
akrolsmir committed Jan 16, 2025
1 parent 729edef commit 3660731
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 27 deletions.
25 changes: 0 additions & 25 deletions web/components/nav/manifold-logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import clsx from 'clsx'
import { useUser } from 'web/hooks/use-user'
import { ENV } from 'common/envs/constants'
import { LogoIcon } from 'web/components/icons/logo-icon'
import { Tooltip } from '../widgets/tooltip'

export function ManifoldLogo(props: { className?: string; twoLine?: boolean }) {
const { className } = props
Expand Down Expand Up @@ -36,27 +35,3 @@ export function ManifoldLogo(props: { className?: string; twoLine?: boolean }) {
</>
)
}

export function MemorialLogo(props: { className?: string; twoLine?: boolean }) {
const { className } = props

return (
<Tooltip text="RIP Max Chiswick">
<Link
href="https://blog.rossry.net/chisness/"
target="_blank"
rel="noopener noreferrer"
className={clsx(
'group flex w-full flex-row items-center justify-center gap-0.5 bg-black px-1 outline-none',
className
)}
>
<LogoIcon
className="h-10 w-10 shrink-0 stroke-white transition-transform group-hover:-rotate-3"
aria-hidden
/>
<div className={clsx('text-xl font-thin text-white')}>MANIFOLD</div>
</Link>
</Tooltip>
)
}
4 changes: 2 additions & 2 deletions web/components/nav/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import { firebaseLogin, firebaseLogout } from 'web/lib/firebase/users'
import { withTracking } from 'web/lib/service/analytics'
import { MobileAppsQRCodeDialog } from '../buttons/mobile-apps-qr-code-button'
import { SidebarSignUpButton } from '../buttons/sign-up-button'
import { ManifoldLogo } from './manifold-logo'
import { ProfileSummary } from './profile-summary'
import { NavItem, SidebarItem } from './sidebar-item'
import { PrivateMessagesIcon } from 'web/components/messaging/messages-icon'
Expand All @@ -35,7 +36,6 @@ import { ReportsIcon } from '../reports-icon'
import { AddFundsButton } from '../profile/add-funds-button'
import { Col } from '../layout/col'
import { TbPigMoney } from 'react-icons/tb'
import { MemorialLogo } from './manifold-logo'
// import { PiRobotBold } from 'react-icons/pi'

export default function Sidebar(props: {
Expand Down Expand Up @@ -96,7 +96,7 @@ export default function Sidebar(props: {
aria-label="Sidebar"
className={clsx('flex h-screen flex-col', className)}
>
<MemorialLogo className="mb-3 mt-6" />
<ManifoldLogo className="pb-3 pt-6" />

{user && !isMobile && <ProfileSummary user={user} className="mb-3" />}

Expand Down

0 comments on commit 3660731

Please sign in to comment.