Continue porting from V1
This commit is contained in:
18
web/src/layouts/Base.astro
Normal file
18
web/src/layouts/Base.astro
Normal 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>
|
||||
Reference in New Issue
Block a user