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.
- package/README.md +1 -1
- package/bin/rizzo-css.js +3 -3
- package/package.json +1 -1
- package/scaffold/react/base/package.json +1 -1
- package/scaffold/svelte/Settings.svelte +11 -48
- package/scaffold/svelte/variants/full/README-RIZZO.md +1 -0
- package/scaffold/vanilla/README-RIZZO.md +1 -1
- package/scaffold/vanilla/components/accordion.html +2 -0
- package/scaffold/vanilla/components/alert-dialog.html +2 -0
- package/scaffold/vanilla/components/alert.html +2 -0
- package/scaffold/vanilla/components/aspect-ratio.html +2 -0
- package/scaffold/vanilla/components/avatar.html +2 -0
- package/scaffold/vanilla/components/back-to-top.html +2 -0
- package/scaffold/vanilla/components/badge.html +2 -0
- package/scaffold/vanilla/components/breadcrumb.html +2 -0
- package/scaffold/vanilla/components/button-group.html +2 -0
- package/scaffold/vanilla/components/button.html +2 -0
- package/scaffold/vanilla/components/calendar.html +2 -0
- package/scaffold/vanilla/components/cards.html +2 -0
- package/scaffold/vanilla/components/carousel.html +2 -0
- package/scaffold/vanilla/components/chart.html +2 -0
- package/scaffold/vanilla/components/collapsible.html +2 -0
- package/scaffold/vanilla/components/command.html +2 -0
- package/scaffold/vanilla/components/context-menu.html +2 -0
- package/scaffold/vanilla/components/copy-to-clipboard.html +2 -0
- package/scaffold/vanilla/components/dashboard.html +2 -0
- package/scaffold/vanilla/components/direction.html +2 -0
- package/scaffold/vanilla/components/divider.html +2 -0
- package/scaffold/vanilla/components/docs-sidebar.html +2 -0
- package/scaffold/vanilla/components/dropdown.html +2 -0
- package/scaffold/vanilla/components/empty.html +2 -0
- package/scaffold/vanilla/components/font-switcher.html +2 -0
- package/scaffold/vanilla/components/footer.html +2 -0
- package/scaffold/vanilla/components/forms.html +2 -0
- package/scaffold/vanilla/components/hover-card.html +2 -0
- package/scaffold/vanilla/components/icons.html +2 -0
- package/scaffold/vanilla/components/index.html +2 -0
- package/scaffold/vanilla/components/input-group.html +2 -0
- package/scaffold/vanilla/components/input-otp.html +2 -0
- package/scaffold/vanilla/components/kbd.html +2 -0
- package/scaffold/vanilla/components/label.html +2 -0
- package/scaffold/vanilla/components/menubar.html +2 -0
- package/scaffold/vanilla/components/modal.html +2 -0
- package/scaffold/vanilla/components/navbar.html +2 -0
- package/scaffold/vanilla/components/pagination.html +2 -0
- package/scaffold/vanilla/components/popover.html +2 -0
- package/scaffold/vanilla/components/progress-bar.html +2 -0
- package/scaffold/vanilla/components/range-calendar.html +2 -0
- package/scaffold/vanilla/components/resizable.html +2 -0
- package/scaffold/vanilla/components/scroll-area.html +2 -0
- package/scaffold/vanilla/components/search.html +2 -0
- package/scaffold/vanilla/components/separator.html +2 -0
- package/scaffold/vanilla/components/settings.html +2 -0
- package/scaffold/vanilla/components/sheet.html +2 -0
- package/scaffold/vanilla/components/skeleton.html +2 -0
- package/scaffold/vanilla/components/slider.html +2 -0
- package/scaffold/vanilla/components/sound-effects.html +2 -0
- package/scaffold/vanilla/components/spinner.html +2 -0
- package/scaffold/vanilla/components/switch.html +2 -0
- package/scaffold/vanilla/components/table.html +2 -0
- package/scaffold/vanilla/components/tabs.html +2 -0
- package/scaffold/vanilla/components/theme-switcher.html +2 -0
- package/scaffold/vanilla/components/toast.html +2 -0
- package/scaffold/vanilla/components/toggle-group.html +2 -0
- package/scaffold/vanilla/components/toggle.html +2 -0
- package/scaffold/vanilla/components/tooltip.html +2 -0
- package/scaffold/vanilla/index.html +2 -0
- 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.
|
|
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,5 +1,7 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import
|
|
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
|
-
<
|
|
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
|
-
<
|
|
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.
|
|
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">
|