summaryrefslogtreecommitdiff
path: root/templates/pages/home.django
blob: eef2f816373cf56517932f02cb5fb26e3726bf9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "layouts/base.django" %}

{% block title %}Home - Shifoo's Cafe{% endblock %}

{% block content %}
  <div class="min-h-screen flex items-center justify-center">
    <div class="text-center">
      <h1 class="text-4xl font-bold mb-4">Welcome to Shifoo's Cafe</h1>
      <p class="text-gray-400">A cozy place for close friends</p>
    </div>
  </div>
{% endblock %}