Files
personal-website/layouts/partials/about-card.html
T
2025-04-07 13:06:07 +01:00

20 lines
725 B
HTML

{{ $cv := resources.Get "hazem-krimi.pdf" }}
{{ $faceImage := resources.Get "images/borded-face.webp" }}
<div id="about-card">
<img src="{{ $faceImage.Permalink }}" alt="Hazem Krimi's face" />
<div>
<p>
I am a software engineer with an extensive experience building AI-powered and user-friendly web and cross-platform mobile applications using various technologies including React, React Native, TypeScript, Golang, Rust, Kotlin and Scala to name a few.
</p>
<div id="links">
<a href="{{ $cv.Permalink }}" target="_blank">
Download CV
</a>
<a class="read-more" href="{{ urls.JoinPath .Site.BaseURL "about" }}">
Read more about me
</a>
</div>
</div>
</div>