-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fix/logo' into deploy/dev
- Loading branch information
Showing
12 changed files
with
84 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import type { FC } from 'react' | ||
import Image from 'next/image' | ||
|
||
type LogoEmbededChatAvatarProps = { | ||
className?: string | ||
} | ||
const LogoEmbededChatAvatar: FC<LogoEmbededChatAvatarProps> = ({ | ||
className, | ||
}) => { | ||
return ( | ||
<Image | ||
src='/logo/logo-embeded-chat-avatar.png' | ||
className={`w-10 h-10 ${className}`} | ||
alt='logo' | ||
/> | ||
) | ||
} | ||
|
||
export default LogoEmbededChatAvatar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import type { FC } from 'react' | ||
import Image from 'next/image' | ||
|
||
type LogoEmbededChatHeaderProps = { | ||
className?: string | ||
} | ||
const LogoEmbededChatHeader: FC<LogoEmbededChatHeaderProps> = ({ | ||
className, | ||
}) => { | ||
return ( | ||
<Image | ||
src='/logo/logo-embeded-chat-header.png' | ||
className={`w-auto h-6 ${className}`} | ||
alt='logo' | ||
/> | ||
) | ||
} | ||
|
||
export default LogoEmbededChatHeader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import type { FC } from 'react' | ||
import Image from 'next/image' | ||
|
||
type LogoSiteProps = { | ||
className?: string | ||
} | ||
const LogoSite: FC<LogoSiteProps> = ({ | ||
className, | ||
}) => { | ||
return ( | ||
<Image | ||
src='/logo/logo-site.png' | ||
className={`w-auto h-10 ${className}`} | ||
alt='logo' | ||
/> | ||
) | ||
} | ||
|
||
export default LogoSite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters