20 lines
656 B
Twig
20 lines
656 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block navbar %}{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="min-h-screen flex">
|
|
<div class="hidden lg:flex lg:w-1/2 bg-neutral flex-col items-center justify-center gap-6 p-12">
|
|
<span class="text-5xl font-bold text-neutral-content tracking-tight">Rater</span>
|
|
<p class="text-neutral-content/70 text-lg text-center max-w-xs">
|
|
Rate and discover restaurants near you.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="w-full lg:w-1/2 flex items-center justify-center p-8">
|
|
<div class="w-full max-w-sm">
|
|
{% block form %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|