rizzo-css 0.0.77 → 0.0.78

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 (69) hide show
  1. package/README.md +1 -1
  2. package/bin/rizzo-css.js +13 -9
  3. package/package.json +1 -1
  4. package/scaffold/react/base/package.json +1 -1
  5. package/scaffold/svelte/FontSwitcher.svelte +1 -1
  6. package/scaffold/svelte/Settings.svelte +1 -1
  7. package/scaffold/svelte/config/fonts.ts +59 -0
  8. package/scaffold/vanilla/README-RIZZO.md +1 -1
  9. package/scaffold/vanilla/components/accordion.html +2 -0
  10. package/scaffold/vanilla/components/alert-dialog.html +2 -0
  11. package/scaffold/vanilla/components/alert.html +2 -0
  12. package/scaffold/vanilla/components/aspect-ratio.html +2 -0
  13. package/scaffold/vanilla/components/avatar.html +2 -0
  14. package/scaffold/vanilla/components/back-to-top.html +2 -0
  15. package/scaffold/vanilla/components/badge.html +2 -0
  16. package/scaffold/vanilla/components/breadcrumb.html +2 -0
  17. package/scaffold/vanilla/components/button-group.html +2 -0
  18. package/scaffold/vanilla/components/button.html +2 -0
  19. package/scaffold/vanilla/components/calendar.html +2 -0
  20. package/scaffold/vanilla/components/cards.html +2 -0
  21. package/scaffold/vanilla/components/carousel.html +2 -0
  22. package/scaffold/vanilla/components/chart.html +2 -0
  23. package/scaffold/vanilla/components/collapsible.html +2 -0
  24. package/scaffold/vanilla/components/command.html +2 -0
  25. package/scaffold/vanilla/components/context-menu.html +2 -0
  26. package/scaffold/vanilla/components/copy-to-clipboard.html +2 -0
  27. package/scaffold/vanilla/components/dashboard.html +2 -0
  28. package/scaffold/vanilla/components/direction.html +2 -0
  29. package/scaffold/vanilla/components/divider.html +2 -0
  30. package/scaffold/vanilla/components/docs-sidebar.html +2 -0
  31. package/scaffold/vanilla/components/dropdown.html +2 -0
  32. package/scaffold/vanilla/components/empty.html +2 -0
  33. package/scaffold/vanilla/components/font-switcher.html +2 -0
  34. package/scaffold/vanilla/components/footer.html +2 -0
  35. package/scaffold/vanilla/components/forms.html +2 -0
  36. package/scaffold/vanilla/components/hover-card.html +2 -0
  37. package/scaffold/vanilla/components/icons.html +2 -0
  38. package/scaffold/vanilla/components/index.html +2 -0
  39. package/scaffold/vanilla/components/input-group.html +2 -0
  40. package/scaffold/vanilla/components/input-otp.html +2 -0
  41. package/scaffold/vanilla/components/kbd.html +2 -0
  42. package/scaffold/vanilla/components/label.html +2 -0
  43. package/scaffold/vanilla/components/menubar.html +2 -0
  44. package/scaffold/vanilla/components/modal.html +2 -0
  45. package/scaffold/vanilla/components/navbar.html +2 -0
  46. package/scaffold/vanilla/components/pagination.html +2 -0
  47. package/scaffold/vanilla/components/popover.html +2 -0
  48. package/scaffold/vanilla/components/progress-bar.html +2 -0
  49. package/scaffold/vanilla/components/range-calendar.html +2 -0
  50. package/scaffold/vanilla/components/resizable.html +2 -0
  51. package/scaffold/vanilla/components/scroll-area.html +2 -0
  52. package/scaffold/vanilla/components/search.html +2 -0
  53. package/scaffold/vanilla/components/separator.html +2 -0
  54. package/scaffold/vanilla/components/settings.html +2 -0
  55. package/scaffold/vanilla/components/sheet.html +2 -0
  56. package/scaffold/vanilla/components/skeleton.html +2 -0
  57. package/scaffold/vanilla/components/slider.html +2 -0
  58. package/scaffold/vanilla/components/sound-effects.html +2 -0
  59. package/scaffold/vanilla/components/spinner.html +2 -0
  60. package/scaffold/vanilla/components/switch.html +2 -0
  61. package/scaffold/vanilla/components/table.html +2 -0
  62. package/scaffold/vanilla/components/tabs.html +2 -0
  63. package/scaffold/vanilla/components/theme-switcher.html +2 -0
  64. package/scaffold/vanilla/components/toast.html +2 -0
  65. package/scaffold/vanilla/components/toggle-group.html +2 -0
  66. package/scaffold/vanilla/components/toggle.html +2 -0
  67. package/scaffold/vanilla/components/tooltip.html +2 -0
  68. package/scaffold/vanilla/index.html +2 -0
  69. 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.77 or any version) -->
75
+ <!-- unpkg (pin version: replace @latest with @0.0.78 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
@@ -1855,8 +1855,8 @@ function copySvelteComponents(projectDir, selectedNames, opts) {
1855
1855
  if (existsSync(join(scaffoldDir, 'themes.ts'))) plan.wouldWrite.push(pathRelative(projectDir, join(targetDir, 'themes.ts')));
1856
1856
  if (existsSync(join(scaffoldDir, 'theme.ts'))) plan.wouldWrite.push(pathRelative(projectDir, join(targetDir, 'theme.ts')));
1857
1857
  }
1858
- if (toCopy.includes('Settings') && existsSync(join(getScaffoldConfigDir(), 'fonts.ts')))
1859
- plan.wouldWrite.push(pathRelative(projectDir, join(projectDir, 'src', 'lib', 'config', 'fonts.ts')));
1858
+ if ((toCopy.includes('Settings') || toCopy.includes('FontSwitcher')) && existsSync(join(scaffoldDir, 'config', 'fonts.ts')))
1859
+ plan.wouldWrite.push(pathRelative(projectDir, join(targetDir, 'config', 'fonts.ts')));
1860
1860
  if (toCopy.length > 0) plan.wouldWrite.push(pathRelative(projectDir, join(targetDir, 'index.ts')));
1861
1861
  return;
1862
1862
  }
@@ -1879,13 +1879,17 @@ function copySvelteComponents(projectDir, selectedNames, opts) {
1879
1879
  if (existsSync(themesSrc)) copyFileSync(themesSrc, join(targetDir, 'themes.ts'));
1880
1880
  if (existsSync(themeSrc)) copyFileSync(themeSrc, join(targetDir, 'theme.ts'));
1881
1881
  }
1882
- if (toCopy.includes('Settings')) {
1883
- const configDir = getScaffoldConfigDir();
1884
- const fontsSrc = join(configDir, 'fonts.ts');
1885
- if (existsSync(fontsSrc)) {
1886
- const projectConfigDir = join(projectDir, 'src', 'lib', 'config');
1887
- mkdirSync(projectConfigDir, { recursive: true });
1888
- copyFileSync(fontsSrc, join(projectConfigDir, 'fonts.ts'));
1882
+ if (toCopy.includes('Settings') || toCopy.includes('FontSwitcher')) {
1883
+ const svelteConfigSrc = join(scaffoldDir, 'config');
1884
+ if (existsSync(svelteConfigSrc)) {
1885
+ const projectRizzoConfigDir = join(targetDir, 'config');
1886
+ mkdirSync(projectRizzoConfigDir, { recursive: true });
1887
+ const configEntries = readdirSync(svelteConfigSrc, { withFileTypes: true });
1888
+ for (const entry of configEntries) {
1889
+ if (entry.isFile()) {
1890
+ copyFileSync(join(svelteConfigSrc, entry.name), join(projectRizzoConfigDir, entry.name));
1891
+ }
1892
+ }
1889
1893
  }
1890
1894
  }
1891
1895
  if (exports.length > 0 || copyIconsOnly) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rizzo-css",
3
- "version": "0.0.77",
3
+ "version": "0.0.78",
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.77",
19
+ "rizzo-css": "^0.0.78",
20
20
  "typescript": "~5.6.2",
21
21
  "vite": "^6.0.1"
22
22
  }
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import { onMount } from 'svelte';
3
3
  import ChevronDown from './icons/ChevronDown.svelte';
4
- import { FONT_PAIRS, FONT_PAIR_DEFAULT } from '../../config/fonts';
4
+ import { FONT_PAIRS, FONT_PAIR_DEFAULT } from './config/fonts';
5
5
 
6
6
  interface Props {
7
7
  /** Optional prefix for trigger/menu IDs when multiple FontSwitchers exist. */
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { FONT_PAIRS, FONT_PAIR_DEFAULT } from '../../config/fonts';
2
+ import { FONT_PAIRS, FONT_PAIR_DEFAULT } from './config/fonts';
3
3
 
4
4
  interface Props {
5
5
  open?: boolean;
@@ -0,0 +1,59 @@
1
+ /**
2
+ * Font pairs (sans + mono) for the Settings font changer.
3
+ * Each option sets both --font-family (body/UI) and --font-family-mono (code blocks, pre, kbd).
4
+ * Used by Settings components and layout flash scripts to apply and persist the chosen pair.
5
+ */
6
+
7
+ export interface FontPairEntry {
8
+ value: string;
9
+ label: string;
10
+ /** CSS value for --font-family (sans stack) */
11
+ sans: string;
12
+ /** CSS value for --font-family-mono */
13
+ mono: string;
14
+ }
15
+
16
+ export const FONT_PAIR_DEFAULT = 'geist' as const;
17
+
18
+ export const FONT_PAIRS: FontPairEntry[] = [
19
+ {
20
+ value: 'geist',
21
+ label: 'Geist (Sans + Mono)',
22
+ sans: 'var(--font-family-geist-sans)',
23
+ mono: 'var(--font-family-geist-mono)',
24
+ },
25
+ {
26
+ value: 'inter-jetbrains',
27
+ label: 'Inter + JetBrains Mono',
28
+ sans: 'var(--font-family-inter)',
29
+ mono: 'var(--font-family-jetbrains-mono)',
30
+ },
31
+ {
32
+ value: 'ibm-plex',
33
+ label: 'IBM Plex Sans + Mono',
34
+ sans: 'var(--font-family-ibm-plex-sans)',
35
+ mono: 'var(--font-family-ibm-plex-mono)',
36
+ },
37
+ {
38
+ value: 'source',
39
+ label: 'Source Sans 3 + Source Code Pro',
40
+ sans: 'var(--font-family-source-sans-3)',
41
+ mono: 'var(--font-family-source-code-pro)',
42
+ },
43
+ {
44
+ value: 'dm',
45
+ label: 'DM Sans + DM Mono',
46
+ sans: 'var(--font-family-dm-sans)',
47
+ mono: 'var(--font-family-dm-mono)',
48
+ },
49
+ {
50
+ value: 'outfit-jetbrains',
51
+ label: 'Outfit + JetBrains Mono',
52
+ sans: 'var(--font-family-outfit)',
53
+ mono: 'var(--font-family-jetbrains-mono)',
54
+ },
55
+ ];
56
+
57
+ export function getFontPairById(id: string): FontPairEntry | undefined {
58
+ return FONT_PAIRS.find((p) => p.value === id);
59
+ }
@@ -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.77`, in production.)
31
+ (Replace `@latest` with a specific version, e.g. `@0.0.78`, 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
 
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -921,6 +922,7 @@
921
922
 
922
923
 
923
924
 
925
+
924
926
 
925
927
 
926
928
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <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);">
@@ -862,6 +863,7 @@
862
863
 
863
864
 
864
865
 
866
+
865
867
 
866
868
 
867
869
  <div class="back-to-top" data-back-to-top data-threshold="400" aria-hidden="true">
@@ -513,6 +513,7 @@
513
513
 
514
514
 
515
515
 
516
+
516
517
 
517
518
 
518
519
  <main id="main-content" class="home">
@@ -952,6 +953,7 @@
952
953
 
953
954
 
954
955
 
956
+
955
957
 
956
958
 
957
959
  <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.77",
16
+ "rizzo-css": "^0.0.78",
17
17
  "typescript": "~5.6.2",
18
18
  "vite": "^6.0.1",
19
19
  "vue-tsc": "^2.1.10"