add small frontend stack w/ tailwind & askama

This commit is contained in:
2025-09-03 02:24:05 +02:00
parent 437a7fcdf9
commit 1b2e327088
12 changed files with 236 additions and 2 deletions

16
web/index.html Normal file
View File

@@ -0,0 +1,16 @@
<!doctype html>
<html lang="pl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>gractwo.pl | Witamy!</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body class="min-h-screen text-center flex items-center justify-center">
<p>
Witamy na gractwo.pl! Zapraszamy na nasz
<a href="/discord" class="underline text-blue-400">serwer Discord</a
>!
</p>
</body>
</html>