Skip to content

Commit

Permalink
More adjustments to home layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Midlou committed Feb 6, 2024
1 parent 5fe91b7 commit b750d19
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions src/pages/index.astro
Expand Up @@ -25,23 +25,30 @@ const TITLE = 'Home';
<div class="font-mono text-lg">Midlou</div>
</div>

<p class="text-justify mb-6 md:mt-5 text-base">
<p class="mb-6 mt-5 text-base">
Hello there! My pseudonym is Midlou, I'm a Software engineer; Programmer;
3D modeler and 3D printing;
level designer; audio, video and image creator/editor;
"<a href="https://www.urbandictionary.com/define.php?term=Gambiarra" class="stylized-link" target={"_blank"} rel={"noreferrer"}><i>Gambiarra</i></a>" professional.
I speak Brazilian Portuguese and English.
</p>

{
PROFILE_ITEMS.map((item, index) => {
return <span>
<a href={item.link} target={"_blank"} rel={"noreferrer"} tab-index={0}
class="default-focus-light underline text-blue-400 hover:text-blue-500">{item.label}</a>{ PROFILE_ITEMS.length - 1 == index ? null : <span class="mx-1">•</span>}
</span>

})
}
<div class="text-center">
{
PROFILE_ITEMS.map((item, index) => {
return <span>
<a href={item.link} target={"_blank"} rel={"noreferrer"} tab-index={0} class="default-focus-light underline text-blue-400 hover:text-blue-500">
{item.label}
</a>
{
PROFILE_ITEMS.length - 1 == index
? null
: <span class="mx-1">•</span>
}
</span>
})
}
</div>
</div>
</div>
</MainLayout>
Expand Down

0 comments on commit b750d19

Please sign in to comment.