doing basic layout
This commit is contained in:
17
web/src/layout/Base.astro
Normal file
17
web/src/layout/Base.astro
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
import BaseHead from "./BaseHead.astro"
|
||||
---
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<BaseHead/>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main id="main" class="flex-1">
|
||||
<slot />
|
||||
</main>
|
||||
<!-- <Footer /> -->
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user