rizzo-css 0.0.78 → 0.0.79
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/package.json +1 -1
- package/scaffold/react/base/package.json +1 -1
- package/scaffold/svelte/Navbar.svelte +1 -1
- package/scaffold/svelte/Search.svelte +3 -3
- package/scaffold/svelte/Settings.svelte +8 -6
- 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.79 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/package.json
CHANGED
|
@@ -143,9 +143,9 @@
|
|
|
143
143
|
<p class="search__empty-text">Start typing to search…</p>
|
|
144
144
|
</div>
|
|
145
145
|
<div class="search__results-list" role="group" aria-label="Sample results">
|
|
146
|
-
<a href="
|
|
147
|
-
<a href="
|
|
148
|
-
<a href="
|
|
146
|
+
<a href="/docs/getting-started" class="search__result-item" tabindex={open ? 0 : -1}><div class="search__result-category">Docs</div><div class="search__result-title">Getting started</div></a>
|
|
147
|
+
<a href="/docs/components" class="search__result-item" tabindex={open ? 0 : -1}><div class="search__result-category">Docs</div><div class="search__result-title">Components</div></a>
|
|
148
|
+
<a href="/docs/theming" class="search__result-item" tabindex={open ? 0 : -1}><div class="search__result-category">Docs</div><div class="search__result-title">Theming</div></a>
|
|
149
149
|
</div>
|
|
150
150
|
</div>
|
|
151
151
|
</div>
|
|
@@ -8,13 +8,14 @@
|
|
|
8
8
|
let openInternal = $state(false);
|
|
9
9
|
const open = $derived(openProp !== undefined ? openProp : openInternal);
|
|
10
10
|
|
|
11
|
+
const isBrowser = typeof window !== 'undefined' && typeof localStorage?.getItem === 'function';
|
|
11
12
|
let fontSizeLabel = $state('100%');
|
|
12
13
|
let fontSizeSlider = $state(1);
|
|
13
|
-
let fontPairValue = $state(
|
|
14
|
-
let soundEffects = $state(
|
|
15
|
-
let reducedMotion = $state(
|
|
16
|
-
let highContrast = $state(
|
|
17
|
-
let scrollbarStyle = $state((
|
|
14
|
+
let fontPairValue = $state(isBrowser ? localStorage.getItem('fontPair') || FONT_PAIR_DEFAULT : FONT_PAIR_DEFAULT);
|
|
15
|
+
let soundEffects = $state(isBrowser && localStorage.getItem('soundEffects') === 'true');
|
|
16
|
+
let reducedMotion = $state(isBrowser && localStorage.getItem('reducedMotion') === 'true');
|
|
17
|
+
let highContrast = $state(isBrowser && localStorage.getItem('highContrast') === 'true');
|
|
18
|
+
let scrollbarStyle = $state((isBrowser ? localStorage.getItem('scrollbarStyle') || 'thin' : 'thin') as 'thin' | 'thick' | 'hidden');
|
|
18
19
|
|
|
19
20
|
function applyFontSize(scale: number) {
|
|
20
21
|
if (typeof document === 'undefined') return;
|
|
@@ -34,6 +35,7 @@
|
|
|
34
35
|
}
|
|
35
36
|
|
|
36
37
|
$effect(() => {
|
|
38
|
+
if (typeof window === 'undefined') return;
|
|
37
39
|
(window as unknown as { openSettings?: () => void }).openSettings = () => {
|
|
38
40
|
openInternal = true;
|
|
39
41
|
};
|
|
@@ -45,7 +47,7 @@
|
|
|
45
47
|
});
|
|
46
48
|
|
|
47
49
|
$effect(() => {
|
|
48
|
-
if (!open) return;
|
|
50
|
+
if (typeof document === 'undefined' || !open) return;
|
|
49
51
|
const onEscape = (e: KeyboardEvent) => {
|
|
50
52
|
if (e.key === 'Escape') openInternal = false;
|
|
51
53
|
};
|
|
@@ -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.79`, 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
|
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -923,6 +924,7 @@
|
|
|
923
924
|
|
|
924
925
|
|
|
925
926
|
|
|
927
|
+
|
|
926
928
|
|
|
927
929
|
|
|
928
930
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|
|
@@ -514,6 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
+
|
|
517
518
|
|
|
518
519
|
|
|
519
520
|
<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);">
|
|
@@ -864,6 +865,7 @@
|
|
|
864
865
|
|
|
865
866
|
|
|
866
867
|
|
|
868
|
+
|
|
867
869
|
|
|
868
870
|
|
|
869
871
|
<div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
|