Watermark

This commit is contained in:
Ahmed Al-Taiar
2024-10-09 20:37:27 -04:00
parent 82313bef46
commit 738260f7de

View File

@ -5,6 +5,7 @@ import { Link, routes } from '@redwoodjs/router'
import { Metadata } from '@redwoodjs/web' import { Metadata } from '@redwoodjs/web'
import TitlesCell from 'src/components/Title/TitlesCell' import TitlesCell from 'src/components/Title/TitlesCell'
import { getLogoComponent } from 'src/lib/handle'
const HomePage = () => ( const HomePage = () => (
<> <>
@ -33,6 +34,16 @@ const HomePage = () => (
</div> </div>
</div> </div>
</div> </div>
<div className="fixed bottom-2 left-2 z-10">
<a
href="https://git.altaiar.dev/ahmed/portfolio"
target="_blank"
rel="noreferrer"
className="btn btn-square"
>
{getLogoComponent('gitea')}
</a>
</div>
</> </>
) )