11 lines
255 B
TypeScript
11 lines
255 B
TypeScript
|
const Logo = () => {
|
||
|
return (
|
||
|
<div style={{ display:"flex", alignItems: 'center', justifyContent: 'center'}}>
|
||
|
<a href="/">
|
||
|
<img src="/logo-no-background.png" height="auto" width="40%"/>
|
||
|
</a>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default Logo;
|