rizzo-css 0.0.80 → 0.0.81

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/README.md +1 -1
  2. package/bin/rizzo-css.js +3 -3
  3. package/package.json +1 -1
  4. package/scaffold/react/base/package.json +1 -1
  5. package/scaffold/svelte/Settings.svelte +11 -48
  6. package/scaffold/svelte/variants/full/README-RIZZO.md +1 -0
  7. package/scaffold/vanilla/README-RIZZO.md +1 -1
  8. package/scaffold/vanilla/components/accordion.html +2 -0
  9. package/scaffold/vanilla/components/alert-dialog.html +2 -0
  10. package/scaffold/vanilla/components/alert.html +2 -0
  11. package/scaffold/vanilla/components/aspect-ratio.html +2 -0
  12. package/scaffold/vanilla/components/avatar.html +2 -0
  13. package/scaffold/vanilla/components/back-to-top.html +2 -0
  14. package/scaffold/vanilla/components/badge.html +2 -0
  15. package/scaffold/vanilla/components/breadcrumb.html +2 -0
  16. package/scaffold/vanilla/components/button-group.html +2 -0
  17. package/scaffold/vanilla/components/button.html +2 -0
  18. package/scaffold/vanilla/components/calendar.html +2 -0
  19. package/scaffold/vanilla/components/cards.html +2 -0
  20. package/scaffold/vanilla/components/carousel.html +2 -0
  21. package/scaffold/vanilla/components/chart.html +2 -0
  22. package/scaffold/vanilla/components/collapsible.html +2 -0
  23. package/scaffold/vanilla/components/command.html +2 -0
  24. package/scaffold/vanilla/components/context-menu.html +2 -0
  25. package/scaffold/vanilla/components/copy-to-clipboard.html +2 -0
  26. package/scaffold/vanilla/components/dashboard.html +2 -0
  27. package/scaffold/vanilla/components/direction.html +2 -0
  28. package/scaffold/vanilla/components/divider.html +2 -0
  29. package/scaffold/vanilla/components/docs-sidebar.html +2 -0
  30. package/scaffold/vanilla/components/dropdown.html +2 -0
  31. package/scaffold/vanilla/components/empty.html +2 -0
  32. package/scaffold/vanilla/components/font-switcher.html +2 -0
  33. package/scaffold/vanilla/components/footer.html +2 -0
  34. package/scaffold/vanilla/components/forms.html +2 -0
  35. package/scaffold/vanilla/components/hover-card.html +2 -0
  36. package/scaffold/vanilla/components/icons.html +2 -0
  37. package/scaffold/vanilla/components/index.html +2 -0
  38. package/scaffold/vanilla/components/input-group.html +2 -0
  39. package/scaffold/vanilla/components/input-otp.html +2 -0
  40. package/scaffold/vanilla/components/kbd.html +2 -0
  41. package/scaffold/vanilla/components/label.html +2 -0
  42. package/scaffold/vanilla/components/menubar.html +2 -0
  43. package/scaffold/vanilla/components/modal.html +2 -0
  44. package/scaffold/vanilla/components/navbar.html +2 -0
  45. package/scaffold/vanilla/components/pagination.html +2 -0
  46. package/scaffold/vanilla/components/popover.html +2 -0
  47. package/scaffold/vanilla/components/progress-bar.html +2 -0
  48. package/scaffold/vanilla/components/range-calendar.html +2 -0
  49. package/scaffold/vanilla/components/resizable.html +2 -0
  50. package/scaffold/vanilla/components/scroll-area.html +2 -0
  51. package/scaffold/vanilla/components/search.html +2 -0
  52. package/scaffold/vanilla/components/separator.html +2 -0
  53. package/scaffold/vanilla/components/settings.html +2 -0
  54. package/scaffold/vanilla/components/sheet.html +2 -0
  55. package/scaffold/vanilla/components/skeleton.html +2 -0
  56. package/scaffold/vanilla/components/slider.html +2 -0
  57. package/scaffold/vanilla/components/sound-effects.html +2 -0
  58. package/scaffold/vanilla/components/spinner.html +2 -0
  59. package/scaffold/vanilla/components/switch.html +2 -0
  60. package/scaffold/vanilla/components/table.html +2 -0
  61. package/scaffold/vanilla/components/tabs.html +2 -0
  62. package/scaffold/vanilla/components/theme-switcher.html +2 -0
  63. package/scaffold/vanilla/components/toast.html +2 -0
  64. package/scaffold/vanilla/components/toggle-group.html +2 -0
  65. package/scaffold/vanilla/components/toggle.html +2 -0
  66. package/scaffold/vanilla/components/tooltip.html +2 -0
  67. package/scaffold/vanilla/index.html +2 -0
  68. package/scaffold/vue/base/package.json +1 -1
package/README.md CHANGED
@@ -72,7 +72,7 @@ import 'rizzo-css';
72
72
  **Without a bundler (plain HTML):** Use a CDN. Both unpkg and jsDelivr resolve the package root to the built CSS (via the `unpkg` / `jsdelivr` fields in this package). For reliability or to pin a version, use the explicit path:
73
73
 
74
74
  ```html
75
- <!-- unpkg (pin version: replace @latest with @0.0.80 or any version) -->
75
+ <!-- unpkg (pin version: replace @latest with @0.0.81 or any version) -->
76
76
  <link rel="stylesheet" href="https://unpkg.com/rizzo-css@latest/dist/rizzo.min.css" />
77
77
 
78
78
  <!-- or jsDelivr -->
package/bin/rizzo-css.js CHANGED
@@ -199,7 +199,7 @@ const SVELTE_COMPONENTS = [
199
199
  'Button', 'Badge', 'Card', 'Calendar', 'RangeCalendar', 'Carousel', 'Chart', 'Dashboard', 'Divider', 'DocsSidebar', 'Footer', 'Spinner', 'ProgressBar', 'Avatar', 'Alert',
200
200
  'BackToTop', 'Breadcrumb', 'Command', 'FormGroup', 'Input', 'InputGroup', 'InputOtp', 'Checkbox', 'Textarea', 'Select', 'Radio',
201
201
  'CopyToClipboard', 'Tooltip', 'Pagination', 'Tabs', 'Accordion', 'Dropdown', 'Direction', 'Menubar',
202
- 'Modal', 'Toast', 'Table', 'ThemeSwitcher', 'FontSwitcher', 'SoundEffects',
202
+ 'Modal', 'Toast', 'Table', 'ThemeIcon', 'ThemeSwitcher', 'FontSwitcher', 'SoundEffects',
203
203
  'Navbar', 'Settings', 'Search', 'Icons', 'Skeleton', 'Switch',
204
204
  'Label', 'Kbd', 'Collapsible', 'AlertDialog', 'AspectRatio', 'ButtonGroup', 'Empty', 'Separator',
205
205
  'Slider', 'Sheet', 'Popover', 'Toggle', 'ToggleGroup', 'ScrollArea', 'HoverCard', 'ContextMenu', 'ResizablePaneGroup', 'ResizablePane', 'ResizableHandle',
@@ -208,7 +208,7 @@ const ASTRO_COMPONENTS = [
208
208
  'Button', 'Badge', 'Card', 'Calendar', 'RangeCalendar', 'Carousel', 'Chart', 'Dashboard', 'Divider', 'DocsSidebar', 'Footer', 'Spinner', 'ProgressBar', 'Avatar', 'Alert',
209
209
  'BackToTop', 'Breadcrumb', 'Command', 'FormGroup', 'Input', 'InputGroup', 'InputOtp', 'Checkbox', 'Textarea', 'Select', 'Radio',
210
210
  'CopyToClipboard', 'Tooltip', 'Pagination', 'Tabs', 'Accordion', 'Dropdown', 'Direction', 'Menubar',
211
- 'Modal', 'Toast', 'Table', 'ThemeSwitcher', 'FontSwitcher', 'SoundEffects',
211
+ 'Modal', 'Toast', 'Table', 'ThemeIcon', 'ThemeSwitcher', 'FontSwitcher', 'SoundEffects',
212
212
  'Navbar', 'Settings', 'Search', 'Icons', 'Skeleton', 'Switch',
213
213
  'Label', 'Kbd', 'Collapsible', 'AlertDialog', 'AspectRatio', 'ButtonGroup', 'Empty', 'Separator',
214
214
  'Slider', 'Sheet', 'Popover', 'Toggle', 'ToggleGroup', 'ScrollArea', 'HoverCard', 'ContextMenu', 'ResizablePaneGroup', 'ResizablePane', 'ResizableHandle',
@@ -221,7 +221,7 @@ const RECOMMENDED_COMPONENTS = [
221
221
  'Button', 'Badge', 'Card', 'Calendar', 'RangeCalendar', 'Carousel', 'Dashboard', 'Divider', 'DocsSidebar', 'Footer', 'Spinner', 'ProgressBar', 'Avatar', 'Alert',
222
222
  'BackToTop', 'Breadcrumb', 'FormGroup', 'Input', 'Checkbox', 'Textarea', 'Select', 'Radio',
223
223
  'CopyToClipboard', 'Tooltip', 'Pagination', 'Tabs', 'Accordion', 'Dropdown',
224
- 'Modal', 'Toast', 'Table', 'ThemeSwitcher', 'FontSwitcher', 'SoundEffects',
224
+ 'Modal', 'Toast', 'Table', 'ThemeIcon', 'ThemeSwitcher', 'FontSwitcher', 'SoundEffects',
225
225
  'Navbar', 'Search', 'Settings', 'Icons', 'Skeleton', 'Switch',
226
226
  'Label', 'Kbd', 'Collapsible', 'AlertDialog', 'AspectRatio', 'ButtonGroup', 'Empty', 'Separator',
227
227
  'Slider', 'Sheet', 'Popover', 'Toggle', 'ToggleGroup', 'ScrollArea', 'HoverCard', 'ContextMenu', 'ResizablePaneGroup', 'ResizablePane', 'ResizableHandle',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rizzo-css",
3
- "version": "0.0.80",
3
+ "version": "0.0.81",
4
4
  "engines": {
5
5
  "node": ">=18"
6
6
  },
@@ -16,7 +16,7 @@
16
16
  "@types/react": "^18.3.12",
17
17
  "@types/react-dom": "^18.3.1",
18
18
  "@vitejs/plugin-react": "^4.3.3",
19
- "rizzo-css": "^0.0.80",
19
+ "rizzo-css": "^0.0.81",
20
20
  "typescript": "~5.6.2",
21
21
  "vite": "^6.0.1"
22
22
  }
@@ -1,5 +1,7 @@
1
1
  <script lang="ts">
2
- import { FONT_PAIRS, FONT_PAIR_DEFAULT } from './config/fonts';
2
+ import ThemeSwitcher from './ThemeSwitcher.svelte';
3
+ import FontSwitcher from './FontSwitcher.svelte';
4
+ import SoundEffects from './SoundEffects.svelte';
3
5
 
4
6
  interface Props {
5
7
  open?: boolean;
@@ -11,8 +13,6 @@
11
13
  const isBrowser = typeof window !== 'undefined' && typeof localStorage?.getItem === 'function';
12
14
  let fontSizeLabel = $state('100%');
13
15
  let fontSizeSlider = $state(1);
14
- let fontPairValue = $state(isBrowser ? localStorage.getItem('fontPair') || FONT_PAIR_DEFAULT : FONT_PAIR_DEFAULT);
15
- let soundEffects = $state(isBrowser && localStorage.getItem('soundEffects') === 'true');
16
16
  let reducedMotion = $state(isBrowser && localStorage.getItem('reducedMotion') === 'true');
17
17
  let highContrast = $state(isBrowser && localStorage.getItem('highContrast') === 'true');
18
18
  let scrollbarStyle = $state((isBrowser ? localStorage.getItem('scrollbarStyle') || 'thin' : 'thin') as 'thin' | 'thick' | 'hidden');
@@ -24,16 +24,6 @@
24
24
  fontSizeLabel = `${Math.round(scale * 100)}%`;
25
25
  }
26
26
 
27
- function applyFontPair(value: string) {
28
- if (typeof document === 'undefined') return;
29
- const pair = FONT_PAIRS.find((p) => p.value === value);
30
- if (pair) {
31
- document.documentElement.style.setProperty('--font-family', pair.sans);
32
- document.documentElement.style.setProperty('--font-family-mono', pair.mono);
33
- localStorage?.setItem('fontPair', value);
34
- }
35
- }
36
-
37
27
  $effect(() => {
38
28
  if (typeof window === 'undefined') return;
39
29
  (window as unknown as { openSettings?: () => void }).openSettings = () => {
@@ -61,21 +51,12 @@
61
51
  const scale = saved ? parseFloat(saved) : 1;
62
52
  fontSizeSlider = scale;
63
53
  fontSizeLabel = `${Math.round(scale * 100)}%`;
64
- const savedPair = localStorage?.getItem('fontPair') || FONT_PAIR_DEFAULT;
65
- fontPairValue = savedPair;
66
- soundEffects = localStorage?.getItem('soundEffects') === 'true';
67
54
  reducedMotion = localStorage?.getItem('reducedMotion') === 'true';
68
55
  highContrast = localStorage?.getItem('highContrast') === 'true';
69
56
  scrollbarStyle = (localStorage?.getItem('scrollbarStyle') || 'thin') as 'thin' | 'thick' | 'hidden';
70
57
  }
71
58
  });
72
59
 
73
- function onSoundEffectsChange(e: Event) {
74
- const checked = (e.target as HTMLInputElement).checked;
75
- soundEffects = checked;
76
- localStorage?.setItem('soundEffects', checked ? 'true' : 'false');
77
- }
78
-
79
60
  function close() {
80
61
  openInternal = false;
81
62
  }
@@ -87,13 +68,6 @@
87
68
  applyFontSize(scale);
88
69
  }
89
70
 
90
- function onFontPairChange(e: Event) {
91
- const target = e.target as HTMLSelectElement;
92
- const value = target.value;
93
- fontPairValue = value;
94
- applyFontPair(value);
95
- }
96
-
97
71
  function onReducedMotionChange(e: Event) {
98
72
  const checked = (e.target as HTMLInputElement).checked;
99
73
  reducedMotion = checked;
@@ -133,6 +107,12 @@
133
107
  <button type="button" class="settings__close" data-settings-close aria-label="Close settings" onclick={close}>×</button>
134
108
  </div>
135
109
  <div class="settings__content" tabindex="-1" aria-label="Settings options">
110
+ <section class="settings__section">
111
+ <h3 class="settings__section-title">Theme</h3>
112
+ <div class="settings__control">
113
+ <ThemeSwitcher idPrefix="settings" />
114
+ </div>
115
+ </section>
136
116
  <section class="settings__section">
137
117
  <h3 class="settings__section-title">Font Size</h3>
138
118
  <div class="settings__control">
@@ -159,31 +139,14 @@
159
139
  <section class="settings__section">
160
140
  <h3 class="settings__section-title">Font</h3>
161
141
  <div class="settings__control">
162
- <label for="font-pair-select" class="settings__label"><span class="settings__label-text">Font pair (sans + mono)</span></label>
163
- <select
164
- id="font-pair-select"
165
- class="form-control"
166
- aria-label="Font pair"
167
- data-font-pair
168
- style="width: 100%;"
169
- value={fontPairValue}
170
- onchange={onFontPairChange}
171
- >
172
- {#each FONT_PAIRS as pair}
173
- <option value={pair.value} data-sans={pair.sans} data-mono={pair.mono}>{pair.label}</option>
174
- {/each}
175
- </select>
142
+ <FontSwitcher idPrefix="settings" />
176
143
  <p class="settings__help-text">Body text and code blocks use the selected pair.</p>
177
144
  </div>
178
145
  </section>
179
146
  <section class="settings__section">
180
147
  <h3 class="settings__section-title">Sound</h3>
181
148
  <div class="settings__control">
182
- <label class="settings__checkbox-label">
183
- <input type="checkbox" class="settings__checkbox" aria-label="Play sound on click" checked={soundEffects} onchange={onSoundEffectsChange} />
184
- <span>Play sound on click</span>
185
- </label>
186
- <p class="settings__help-text">Short click sound when you interact with buttons and links. Off by default.</p>
149
+ <SoundEffects showHelp={true} />
187
150
  </div>
188
151
  </section>
189
152
  <section class="settings__section">
@@ -44,6 +44,7 @@ SvelteKit project with Rizzo CSS. Scaffolded with `npx rizzo-css init` when you
44
44
  - `src/routes/+layout.svelte` — Root layout
45
45
  - `src/routes/+page.svelte` — Home page
46
46
  - **Navbar** — Flat links (Docs, Components, Blocks, Themes, Colors); Search and Settings in the scaffold
47
+ - **Settings** — Slide-in panel (gear icon): Theme (ThemeSwitcher), Font Size, Font (FontSwitcher), Sound (SoundEffects), Accessibility (reduce motion, high contrast, scrollbar style). Same contents as the docs site.
47
48
  - `static/css/rizzo.min.css` — Rizzo CSS bundle (added by CLI; font URLs point to `/assets/fonts/`)
48
49
  - `static/assets/fonts/` — Rizzo font files (added by CLI)
49
50
  - `README-RIZZO.md` — This file (scaffold docs; does not replace your project README)
@@ -28,7 +28,7 @@ If you prefer to load CSS from a CDN instead of the local file, replace the `<li
28
28
  - `<link rel="stylesheet" href="https://unpkg.com/rizzo-css@latest/dist/rizzo.min.css" />`
29
29
  - Or jsDelivr: `https://cdn.jsdelivr.net/npm/rizzo-css@latest/dist/rizzo.min.css`
30
30
 
31
- (Replace `@latest` with a specific version, e.g. `@0.0.80`, in production.)
31
+ (Replace `@latest` with a specific version, e.g. `@0.0.81`, in production.)
32
32
 
33
33
  The CLI replaces placeholders in `index.html` (e.g. `{{DATA_THEME}}`, `{{TITLE}}`) when you run `rizzo-css init`. The theme selected during init is used on first load when you have no saved preference in the browser.
34
34
 
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -927,6 +928,7 @@
927
928
 
928
929
 
929
930
 
931
+
930
932
 
931
933
 
932
934
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="flex flex-col items-center justify-center text-center min-h-screen" style="padding: var(--spacing-12) var(--spacing-4); min-height: calc(100vh - 4rem);">
@@ -868,6 +869,7 @@
868
869
 
869
870
 
870
871
 
872
+
871
873
 
872
874
 
873
875
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -516,6 +516,7 @@
516
516
 
517
517
 
518
518
 
519
+
519
520
 
520
521
 
521
522
  <main id="main-content" class="home">
@@ -958,6 +959,7 @@
958
959
 
959
960
 
960
961
 
962
+
961
963
 
962
964
 
963
965
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "devDependencies": {
15
15
  "@vitejs/plugin-vue": "^5.2.1",
16
- "rizzo-css": "^0.0.80",
16
+ "rizzo-css": "^0.0.81",
17
17
  "typescript": "~5.6.2",
18
18
  "vite": "^6.0.1",
19
19
  "vue-tsc": "^2.1.10"