We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b391f6 commit a4a852dCopy full SHA for a4a852d
apps/landing/src/components/Logo.tsx
@@ -1,11 +1,12 @@
1
import { Center, Flex, Image } from '@devup-ui/react'
2
3
+import { URL_PREFIX } from '../constants'
4
import { LogoText } from './LogoText'
5
6
export function Logo() {
7
return (
8
<Flex alignItems="center" gap={[2, null, 4]} h={[7, '42px']}>
- <Image h="100%" src="/logo.svg" />
9
+ <Image h="100%" src={URL_PREFIX + '/logo.svg'} />
10
<Center h={[5, null, '42px']}>
11
<LogoText />
12
</Center>
0 commit comments