templates/home.html.twig line 1
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Ukkera Viki Platform{% endblock %}</title>
{# Run `composer require symfony/webpack-encore-bundle`
and uncomment the following Encore helpers to start using Symfony UX #}
{% block stylesheets %}
{#{{ encore_entry_link_tags('app') }}#}
{% endblock %}
{% block javascripts %}
{#{{ encore_entry_script_tags('app') }}#}
{% endblock %}
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<section class="w-screen h-screen flex flex-col items-center justify-center gap-y-5">
<img class="w-32 h-32" src="/ukkera.png" alt="Ukkera Logo" />
<h1>Ukkera Viki Platform</h1>
</section>
</body>
</html>