Skip to content

Commit a4a852d

Browse files
committed
Fix logo
1 parent 2b391f6 commit a4a852d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/landing/src/components/Logo.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import { Center, Flex, Image } from '@devup-ui/react'
22

3+
import { URL_PREFIX } from '../constants'
34
import { LogoText } from './LogoText'
45

56
export function Logo() {
67
return (
78
<Flex alignItems="center" gap={[2, null, 4]} h={[7, '42px']}>
8-
<Image h="100%" src="/logo.svg" />
9+
<Image h="100%" src={URL_PREFIX + '/logo.svg'} />
910
<Center h={[5, null, '42px']}>
1011
<LogoText />
1112
</Center>

0 commit comments

Comments
 (0)