Skip to content

Commit

Permalink
Updating Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
iamhectorsosa committed Nov 21, 2023
1 parent 99a09a5 commit 14ea867
Show file tree
Hide file tree
Showing 6 changed files with 413 additions and 169 deletions.
1 change: 1 addition & 0 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
Expand Down
4 changes: 3 additions & 1 deletion docs/src/app/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ import {
array,
union,
literal,
minValue,
} from "valibot";

/** Using `valibot` */
const searchParamsSchema = object({
page: fallback(number(), 1),
page: fallback(number([minValue(1)]), 1),
item: fallback(optional(string()), undefined),
notifications: fallback(optional(boolean()), undefined),
categories: fallback(
Expand Down
2 changes: 1 addition & 1 deletion docs/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

:root {
--sh-class: #2d5e9d;
--sh-identifier: #354150;
--sh-identifier: #859bb5;
--sh-sign: #8996a3;
--sh-string: #00a99a;
--sh-keyword: #f47067;
Expand Down
Loading

0 comments on commit 14ea867

Please sign in to comment.