move logo into its own folder

This commit is contained in:
Pascal Fischer
2023-05-09 16:15:22 +02:00
parent abf8fd2f95
commit d359c11b76
3 changed files with 2 additions and 2 deletions

View File

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@@ -1,9 +1,9 @@
export function Logo(props) {
return (
<div>
<img src='/img/logo.svg' alt="some file" height='200'
<img src='/img/logo/logo.svg' alt="some file" height='200'
width='180' className="dark:hidden"/>
<img src='/img/logo-dark.svg' alt="some file" height='200'
<img src='/img/logo/logo-dark.svg' alt="some file" height='200'
width='180' className="hidden dark:block"/>
</div>
)