13 lines
452 B
HTML
13 lines
452 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="text-center space-y-4 mt-10">
|
|
<img src="profile.png" alt="Profile Picture" class="mx-auto rounded-full w-36 h-36 object-cover" />
|
|
|
|
<h1 class="text-3xl font-bold">I am Hadeed Ahmad, student at LUMS.</h1>
|
|
|
|
<p class="text-lg text-gray-600">
|
|
Check out my <a href="https://git.hadeedahmad.com" class="text-blue-500 underline hover:text-blue-700">Forgejo</a>.
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|