Implement Sidebar component

This commit is contained in:
Jorge Vargas 2025-02-16 00:38:30 -06:00
parent 28a32044f4
commit cfd4fcd957
8 changed files with 56 additions and 3 deletions

View file

@ -1,5 +1,11 @@
---
import Sidebar from 'components/Sidebar.astro'
import BaseLayout from 'layouts/base.astro'
---
<BaseLayout />
<BaseLayout>
<div class='flex flex-1 max-w-[2000px]'>
<div class='flex-1'>Page content goes here</div>
<Sidebar />
</div>
</BaseLayout>