feat: Added footer to home page

This commit is contained in:
florian 2024-02-27 14:26:44 +00:00
parent bfe8a3560b
commit 1dba29b619
3 changed files with 12 additions and 6 deletions

View File

@ -45,3 +45,8 @@
cursor: pointer;
overflow: visible;
}
.footer {
padding: 2em;
text-align: center;
}

View File

@ -45,6 +45,12 @@ const Home = () => {
</div>
</>
)}
<div className="footer">
Made with 💜 by{' '}
<a href="https://njump.me/npub1klr0dy2ul2dx9llk58czvpx73rprcmrvd5dc7ck8esg8f8es06qs427gxc" target="blank">
Florian
</a>
</div>
</div>
</div>
);

View File

@ -321,12 +321,7 @@ const SlideShow = () => {
</>
)}
{(viewMode == 'scroll' || viewMode == 'slideshow') && (
<button onClick={() => toggleViewMode()} title={'view grid (G)'}>
<IconGrid />
</button>
)}
{viewMode == 'grid' && (
{viewMode == 'grid' && !isMobile && (
<button
onClick={e => {
e.stopPropagation();