22 lines
616 B
Plaintext
22 lines
616 B
Plaintext
---
|
|
import Profile from "./Profile.astro";
|
|
import RecentPost from "./RecentPost.astro";
|
|
import Tag from "./Tags.astro";
|
|
import Categories from "./Categories.astro";
|
|
|
|
const className = Astro.props.class;
|
|
---
|
|
<div id="sidebar" class:list={[className, "w-full"]} transition:persist>
|
|
<div class="flex flex-col w-full gap-4 mb-4" transition:animate="none">
|
|
<Profile></Profile>
|
|
</div>
|
|
<div class="flex flex-col w-full gap-4 top-4 sticky top-4" transition:animate="none">
|
|
<Categories></Categories>
|
|
<!--<RecentPost></RecentPost>-->
|
|
<Tag></Tag>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
</style>
|