Commit af935bd 1 parent b8e967e commit af935bd Copy full SHA for af935bd
File tree 2 files changed +4
-2
lines changed
airstrip-fe/src/components
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 3
3
import { GITHUB_REPO_URL , PRODUCT_NAME } from '@/constants' ;
4
4
import { Button } from '@mantine/core' ;
5
5
import Image from 'next/image' ;
6
+ import githubMark from '../../../public/github-mark.svg' ;
6
7
7
8
export default function GithubRepoButton ( { variant } : { variant ?: string } ) {
8
9
return (
@@ -12,7 +13,7 @@ export default function GithubRepoButton({ variant }: { variant?: string }) {
12
13
href = { GITHUB_REPO_URL }
13
14
target = "_blank"
14
15
leftSection = {
15
- < Image alt = "github" src = "/github-mark.svg" width = { 20 } height = { 20 } />
16
+ < Image alt = "github" src = { githubMark } width = { 20 } height = { 20 } />
16
17
}
17
18
>
18
19
Check out { PRODUCT_NAME } on GitHub
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import classes from './Logo.module.css';
6
6
import Link from 'next/link' ;
7
7
import { Links } from '@/utils/misc/links' ;
8
8
import { PRODUCT_NAME } from '@/constants' ;
9
+ import logoImage from '../../../public/logo.svg' ;
9
10
10
11
export default function Logo ( {
11
12
size,
@@ -18,7 +19,7 @@ export default function Logo({
18
19
} ) {
19
20
const logo = (
20
21
< Group gap = "0" >
21
- < Image alt = "Logo" src = "/logo.svg" width = { size } height = { size } />
22
+ < Image alt = "Logo" src = { logoImage } width = { size } height = { size } />
22
23
{ withText && < Text fw = "bold" > { PRODUCT_NAME } </ Text > }
23
24
</ Group >
24
25
) ;
You can’t perform that action at this time.
0 commit comments