30 lines
613 B
Plaintext
30 lines
613 B
Plaintext
---
|
|
import BaseHead from "./BaseHead.astro"
|
|
import Sidebar from "@components/sidebar"
|
|
import Navbar from "@components/index/navbar"
|
|
import Footer from "@components/footer"
|
|
---
|
|
|
|
<html>
|
|
<head>
|
|
<BaseHead/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<main id="main" class="flex flex-row">
|
|
<div class="w-[32%] sticky top-0 py-14 h-screen text-center flex flex-col">
|
|
<Sidebar>
|
|
<slot name="sidebar" />
|
|
</Sidebar>
|
|
|
|
<Footer/>
|
|
</div>
|
|
|
|
<div class="content-panel">
|
|
<slot name="content"/>
|
|
</div>
|
|
|
|
</main>
|
|
</body>
|
|
</html> |