2024-05-20 18:40:43 -03:00
|
|
|
package pages
|
|
|
|
|
|
|
|
|
|
import (
|
2024-05-23 10:44:57 -03:00
|
|
|
"www/layouts"
|
2024-05-20 18:40:43 -03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
templ Homepage() {
|
2024-05-23 18:29:45 -03:00
|
|
|
@layouts.Page("013") {
|
2024-05-23 18:47:30 -03:00
|
|
|
<main>
|
|
|
|
|
<img src="/logo-013.svg" alt="" width="100" height="100"/>
|
|
|
|
|
<h1 class="font-cal">Someone who's trying to improve</h1>
|
|
|
|
|
<div class="text-#181818 flex flex-row justify-between items-center">
|
2024-05-23 18:29:45 -03:00
|
|
|
<nav>
|
|
|
|
|
<ul class="list-none flex flex-row gap-3 p-0">
|
2024-05-23 18:47:30 -03:00
|
|
|
<li class="i-simple-icons:github w-4 hover:text-#ababab transition-colors">
|
2024-05-23 18:29:45 -03:00
|
|
|
<a
|
|
|
|
|
href="https://github.com/guz013"
|
|
|
|
|
target="_blank"
|
|
|
|
|
class="opacity-0"
|
|
|
|
|
rel="noreferrer noopener"
|
|
|
|
|
>
|
|
|
|
|
GitHub
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
2024-05-23 18:47:30 -03:00
|
|
|
<li class="i-simple-icons:codeberg w-4 hover:text-#ababab transition-colors">
|
2024-05-23 18:29:45 -03:00
|
|
|
<a
|
|
|
|
|
href="https://codeberg.org/guz013"
|
|
|
|
|
target="_blank"
|
|
|
|
|
class="opacity-0"
|
|
|
|
|
rel="noreferrer noopener"
|
|
|
|
|
>
|
|
|
|
|
Codeberg
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
2024-05-23 18:47:30 -03:00
|
|
|
<li class="i-simple-icons:twitter w-4 hover:text-#ababab transition-colors">
|
2024-05-23 18:29:45 -03:00
|
|
|
<a
|
|
|
|
|
href="https://twitter.com/guz013_"
|
|
|
|
|
target="_blank"
|
|
|
|
|
class="opacity-0"
|
|
|
|
|
rel="noreferrer noopener"
|
|
|
|
|
>
|
|
|
|
|
Twitter
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
2024-05-23 18:47:30 -03:00
|
|
|
<li class="i-simple-icons:mastodon w-4 hover:text-#ababab transition-colors">
|
2024-05-23 18:29:45 -03:00
|
|
|
<a
|
|
|
|
|
href="https://mastodon.social/@guz013"
|
|
|
|
|
target="_blank"
|
|
|
|
|
class="opacity-0"
|
|
|
|
|
rel="noreferrer noopener"
|
|
|
|
|
>
|
|
|
|
|
Mastodon
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
2024-05-23 18:47:30 -03:00
|
|
|
<li class="i-simple-icons:instagram w-4 hover:text-#ababab transition-colors">
|
2024-05-23 18:29:45 -03:00
|
|
|
<a
|
|
|
|
|
href="https://instagram.com/guz013_"
|
|
|
|
|
target="_blank"
|
|
|
|
|
class="opacity-0"
|
|
|
|
|
rel="noreferrer noopener"
|
|
|
|
|
>
|
|
|
|
|
Instagram
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
2024-05-23 18:47:30 -03:00
|
|
|
<li class="i-simple-icons:pixelfed w-4 hover:text-#ababab transition-colors">
|
2024-05-23 18:29:45 -03:00
|
|
|
<a
|
|
|
|
|
href="https://pixelfed.social/@guz013"
|
|
|
|
|
target="_blank"
|
|
|
|
|
class="opacity-0"
|
|
|
|
|
rel="noreferrer noopener"
|
|
|
|
|
>
|
|
|
|
|
Pixelfed
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</nav>
|
2024-05-23 18:47:30 -03:00
|
|
|
<a class="text-#181818 hover:text-#ababab transition-colors" href="mailto:contact.guz013@gmail.com">
|
|
|
|
|
<p class="m-0">2024 © Gustavo L. de Mello</p>
|
2024-05-23 18:29:45 -03:00
|
|
|
</a>
|
2024-05-23 18:47:30 -03:00
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
<footer class="fixed bottom-0 text-xs font-mono text-#181818">
|
|
|
|
|
<p>new website in development</p>
|
|
|
|
|
</footer>
|
2024-05-23 18:29:45 -03:00
|
|
|
}
|
2024-05-20 18:40:43 -03:00
|
|
|
}
|