Skip to content

Commit

Permalink
🐛 fix: fix discord url
Browse files Browse the repository at this point in the history
  • Loading branch information
arvinxx committed Jan 20, 2024
1 parent 732fce3 commit 8cc70f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/home/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import Link from 'next/link';
import { memo } from 'react';
import { Flexbox } from 'react-layout-kit';

import { GITHUB_REPO } from '@/const/url';
import { DISCORD_URL, GITHUB_REPO } from '@/const/url';
import Settings from '@/features/Settings';

const Header = memo(() => (
<Flexbox align={'center'} horizontal justify={'space-between'}>
<Logo extra={'Midjourney WebUI'} type={'combine'} />
<Flexbox horizontal>
<Link href={GITHUB_REPO} style={{ color: 'inherit' }} target={'_blank'}>
<Link href={DISCORD_URL} style={{ color: 'inherit' }} target={'_blank'}>
<ActionIcon icon={DiscordIcon} title={'Discord'} />
</Link>
<Link href={GITHUB_REPO} style={{ color: 'inherit' }} target={'_blank'} title={'Github Repo'}>
Expand Down

0 comments on commit 8cc70f1

Please sign in to comment.