Skip to content

Commit

Permalink
Merge branch 'fix/logo' into deploy/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
zxhlyh committed Oct 13, 2023
2 parents 8f967a0 + da77e81 commit 303cc83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions web/app/components/base/logo/logo-embeded-chat-header.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import type { FC } from 'react'
import Image from 'next/image'

type LogoEmbededChatHeaderProps = {
className?: string
Expand All @@ -8,9 +7,9 @@ const LogoEmbededChatHeader: FC<LogoEmbededChatHeaderProps> = ({
className,
}) => {
return (
<Image
<img
src='/logo/logo-embeded-chat-header.png'
className={`w-auto h-6 ${className}`}
className={`block w-auto h-6 ${className}`}
alt='logo'
/>
)
Expand Down
5 changes: 2 additions & 3 deletions web/app/components/base/logo/logo-site.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import type { FC } from 'react'
import Image from 'next/image'

type LogoSiteProps = {
className?: string
Expand All @@ -8,9 +7,9 @@ const LogoSite: FC<LogoSiteProps> = ({
className,
}) => {
return (
<Image
<img
src='/logo/logo-site.png'
className={`w-auto h-10 ${className}`}
className={`block w-auto h-10 ${className}`}
alt='logo'
/>
)
Expand Down

0 comments on commit 303cc83

Please sign in to comment.