mirror of
https://github.com/janderedev/automod.git
synced 2024-12-22 18:55:28 +00:00
fix icon
This commit is contained in:
parent
c786adbf28
commit
180f722ed3
|
@ -1,11 +1,12 @@
|
||||||
import { FunctionComponent } from "react";
|
import { FunctionComponent } from "react";
|
||||||
import { Link } from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
|
import AutomodIcon from '../favicon.svg';
|
||||||
|
|
||||||
const Home: FunctionComponent = () => {
|
const Home: FunctionComponent = () => {
|
||||||
return (
|
return (
|
||||||
<div style={{ marginLeft: '12px' }}>
|
<div style={{ marginLeft: '12px' }}>
|
||||||
<div style={{ display: 'flex', padding: '16px 0' }}>
|
<div style={{ display: 'flex', padding: '16px 0' }}>
|
||||||
<img src='/src/favicon.svg' style={{ height: '40px' }} />
|
<img src={AutomodIcon} style={{ height: '40px' }} />
|
||||||
<h1 style={{ color: 'var(--foreground)', margin: '0', paddingLeft: '8px' }}>Automod Web UI</h1>
|
<h1 style={{ color: 'var(--foreground)', margin: '0', paddingLeft: '8px' }}>Automod Web UI</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue