create new html views

This commit is contained in:
2025-11-11 20:55:18 +07:00
parent a9da83e6ab
commit 697c5bc428
9 changed files with 195 additions and 162 deletions

28
views/footer.html Normal file
View File

@@ -0,0 +1,28 @@
{{ block "footer" .}}
<footer id="contact" class="bg-gray-100 mt-auto py-10">
<div class="container mx-auto text-center">
<h2 class="text-2xl font-bold mb-4">Get in Touch</h2>
<p class="mb-6">
Feel free to reach out via email or connect on my socials.
</p>
<div class="flex justify-center gap-6">
<a href="mailto:your@email.com" class="text-blue-600 hover:underline"
>Email</a
>
<a
href="https://linkedin.com/in/yourprofile"
target="_blank"
class="text-blue-600 hover:underline"
>LinkedIn</a
>
<a
href="https://github.com/yourusername"
target="_blank"
class="text-blue-600 hover:underline"
>GitHub</a
>
</div>
<p class="mt-6 text-gray-500 text-sm">© 2025 Your Name</p>
</div>
</footer>
{{ end }}