feat/sidebar-skeleton: added sidebar skeleton

This commit is contained in:
Linus Flood
2024-12-17 07:17:30 +01:00
parent 39c3a8bf76
commit daa677d605
4 changed files with 23 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
import SkeletonShimmer from "@/components/SkeletonShimmer"
import styles from "./sidebar.module.css"
export default function SidebarSkeleton() {
return (
<aside className={styles.sidebar}>
<nav className={styles.nav}>
<SkeletonShimmer width={"100%"} height="500px" />
</nav>
</aside>
)
}