mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Remove the santa hat logo
This commit is contained in:
parent
c75867464b
commit
f72e1333d6
5 changed files with 8 additions and 10 deletions
|
|
@ -7,7 +7,7 @@ import {
|
|||
} from '../elements/LayoutPrimitives'
|
||||
import { LoginForm } from './LoginForm'
|
||||
import type { LoginFormProps } from './LoginForm'
|
||||
import { OmnivoreFestiveLogo } from '../elements/images/OmnivoreFestiveLogo'
|
||||
import { OmnivoreNameLogo } from '../elements/images/OmnivoreNameLogo'
|
||||
import { theme } from '../tokens/stitches.config'
|
||||
|
||||
export function LoginLayout(props: LoginFormProps): JSX.Element {
|
||||
|
|
@ -34,7 +34,7 @@ export function LoginLayout(props: LoginFormProps): JSX.Element {
|
|||
width: '100%',
|
||||
}}
|
||||
>
|
||||
<OmnivoreFestiveLogo
|
||||
<OmnivoreNameLogo
|
||||
color={theme.colors.omnivoreGray.toString()}
|
||||
href="/login"
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import React, { ReactNode } from 'react'
|
||||
import { PageMetaData } from '../patterns/PageMetaData'
|
||||
import { VStack, HStack, Box } from '../elements/LayoutPrimitives'
|
||||
import { OmnivoreFestiveLogo } from '../elements/images/OmnivoreFestiveLogo'
|
||||
import { OmnivoreNameLogo } from '../elements/images/OmnivoreNameLogo'
|
||||
import { StyledText } from '../elements/StyledText'
|
||||
import { Button } from '../elements/Button'
|
||||
import { useRouter } from 'next/router'
|
||||
|
|
@ -123,7 +123,7 @@ export const OnboardingLayout = ({
|
|||
}}
|
||||
alignment="center"
|
||||
>
|
||||
<OmnivoreFestiveLogo href="/login" />
|
||||
<OmnivoreNameLogo href="/login" />
|
||||
<StyledText
|
||||
style="logoTitle"
|
||||
css={{ color: '#0A080666', paddingLeft: '9px', fontSize: 15 }}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { Box, VStack, HStack } from '../elements/LayoutPrimitives'
|
||||
import { OmnivoreFestiveLogo } from '../elements/images/OmnivoreFestiveLogo'
|
||||
import { OmnivoreNameLogo } from '../elements/images/OmnivoreNameLogo'
|
||||
import { theme } from '../tokens/stitches.config'
|
||||
|
||||
type ProfileLayoutProps = {
|
||||
|
|
@ -39,7 +39,7 @@ export function ProfileLayout(props: ProfileLayoutProps): JSX.Element {
|
|||
},
|
||||
}}
|
||||
>
|
||||
<OmnivoreFestiveLogo
|
||||
<OmnivoreNameLogo
|
||||
color={theme.colors.omnivoreGray.toString()}
|
||||
href="/login"
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
import { OmnivoreFestiveLogo } from '../../elements/images/OmnivoreFestiveLogo'
|
||||
import Link from 'next/link'
|
||||
import Image from 'next/image'
|
||||
import { Box, HStack } from '../../elements/LayoutPrimitives'
|
||||
import { GithubLogo, DiscordLogo, TwitterLogo } from 'phosphor-react'
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import Link from 'next/link'
|
||||
import { Box, SpanBox } from '../../elements/LayoutPrimitives'
|
||||
import { OmnivoreFestiveLogo } from '../../elements/images/OmnivoreFestiveLogo'
|
||||
import { OmnivoreNameLogo } from '../../elements/images/OmnivoreNameLogo'
|
||||
|
||||
const containerStyles = {
|
||||
position: 'absolute',
|
||||
|
|
@ -35,7 +35,7 @@ const textStyles = {
|
|||
export function LandingHeader(): JSX.Element {
|
||||
return (
|
||||
<Box css={containerStyles}>
|
||||
<OmnivoreFestiveLogo color={'#3D3D3D'} href="/login" />
|
||||
<OmnivoreNameLogo color={'#3D3D3D'} href="/login" />
|
||||
<Box css={linkStyles}>
|
||||
<Box>
|
||||
<Link passHref href="/login">
|
||||
|
|
|
|||
Loading…
Reference in a new issue