Continue porting from V1

This commit is contained in:
2025-11-17 13:48:51 +13:00
parent 3ed4a0f9fe
commit 758fa316cc
8 changed files with 103 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
---
import BaseHead from '@component/BaseHead'
import Header from '@component/Header'
---
<html lang=en>
<head>
<BaseHead title="Recipie" />
</head>
<body>
<main id="main" class="flex-1">
<Header/>
<div class="px-3 mb-5 md:px-5 pt-2">
<slot />
</div>
</main>
</body>
</html>