Skip to content

Commit

Permalink
feat: render sidenav;
Browse files Browse the repository at this point in the history
  • Loading branch information
limsohee1002 committed Nov 6, 2024
1 parent 2bf2b89 commit 8c0497b
Show file tree
Hide file tree
Showing 11 changed files with 432 additions and 44 deletions.
37 changes: 14 additions & 23 deletions assets/shared-bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

89 changes: 89 additions & 0 deletions assets/tailwind-output.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions src/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,14 @@ export type SideNavData = {
name: string;
id: number;
url: string;
position: number;
}[];
}[];
}[];
} | null;

export type NavState = {
category?: number;
section?: number;
article?: number;
};
Loading

0 comments on commit 8c0497b

Please sign in to comment.