feat: add Home page

This commit is contained in:
Oliver Davies 2023-01-01 21:06:42 +00:00
parent 87c694eec3
commit 007cb46ab7
3 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1 @@
name: Home

View file

@ -0,0 +1,5 @@
<div class="max-w-4xl mx-auto px-4">
{% render "@logo" %}
{% render "@page-title" %}
{% render "@footer" %}
</div>

View file

@ -10,7 +10,7 @@
<link rel="stylesheet" href="{{ '/build/tailwind.css' | path }}"> <link rel="stylesheet" href="{{ '/build/tailwind.css' | path }}">
</head> </head>
<body class="bg-gray-100"> <body>
{{ yield | safe }} {{ yield | safe }}
</body> </body>
</html> </html>