TrafoKing/templates/home.html
2025-05-13 01:13:40 +02:00

22 lines
610 B
HTML

<!-- templates/home.html -->
{% extends "base.html" %}
{% load static %}
{% block navbar %}{% endblock %}
{% block title %}Trafoking{% endblock %}
{% block content %}
<section class="flex flex-col items-center text-center gap-12 hero-appear">
<img src="{% static 'img/logo.png' %}" class="logo-big drop-shadow-lg"/>
<div class="flex flex-col sm:flex-row gap-6">
<a href="{% url 'participant_new' %}" class="btn btn-primary text-lg">
Empezar concurso
</a>
<a href="{% url 'settings' %}" class="btn btn-primary text-lg">
Administración
</a>
</div>
</section>
{% endblock %}