Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions website/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -265,11 +265,18 @@ <h3 class="text-xl font-bold text-gray-900">{{ hackathon.name }}</h3>
{% endfor %}
</div>
<div class="text-center">
<a href="{% url 'hackathons' %}"
class="inline-flex items-center px-6 py-3 border border-[#e74c3c] text-[#e74c3c] rounded-lg hover:bg-[#e74c3c] hover:text-white font-medium transition-colors duration-200">
View All Hackathons
<i class="fas fa-arrow-right ml-2"></i>
</a>
<div class="flex flex-wrap items-center justify-center gap-4">
<a href="{% url 'hackathons' %}"
class="inline-flex items-center px-6 py-3 border border-[#e74c3c] text-[#e74c3c] rounded-lg hover:bg-[#e74c3c] hover:text-white font-medium transition-colors duration-200">
View All Hackathons
<i class="fas fa-arrow-right ml-2"></i>
</a>
<a href="{% url 'hackathon_create' %}"
class="inline-flex items-center px-6 py-3 bg-[#e74c3c] text-white rounded-lg hover:bg-[#c0392b] font-medium transition-colors duration-200 shadow-md">
<i class="fas fa-plus mr-2"></i>
Start Your Own Hackathon
</a>
</div>
</div>
</div>
</section>
Expand Down
Loading