Fix site name
This commit is contained in:
parent
66410a35f1
commit
103507d6ee
1 changed files with 2 additions and 1 deletions
|
@ -11,13 +11,14 @@ import { ApplicationStore } from '@/state';
|
||||||
|
|
||||||
export default () => {
|
export default () => {
|
||||||
const user = useStoreState((state: ApplicationStore) => state.user.data!);
|
const user = useStoreState((state: ApplicationStore) => state.user.data!);
|
||||||
|
const name = useStoreState((state: ApplicationStore) => state.settings.data!.name);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div id={'navigation'}>
|
<div id={'navigation'}>
|
||||||
<div className={'mx-auto w-full flex items-center'} style={{ maxWidth: '1200px', height: '3.5rem' }}>
|
<div className={'mx-auto w-full flex items-center'} style={{ maxWidth: '1200px', height: '3.5rem' }}>
|
||||||
<div id={'logo'}>
|
<div id={'logo'}>
|
||||||
<Link to={'/'}>
|
<Link to={'/'}>
|
||||||
Pterodactyl
|
{name}
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<div className={'right-navigation'}>
|
<div className={'right-navigation'}>
|
||||||
|
|
Loading…
Reference in a new issue