nibula 1.2.4 → 1.2.5

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 (81) hide show
  1. package/.eleventy.js +81 -81
  2. package/.eleventyignore +3 -3
  3. package/.github/workflows/publish.yml +37 -0
  4. package/CHANGELOG.md +166 -148
  5. package/LICENSE +169 -169
  6. package/NOTICE +4 -4
  7. package/README.md +120 -123
  8. package/bin/create.js +507 -507
  9. package/bin/nibula.js +317 -305
  10. package/docs/Assistant CLI.md +65 -65
  11. package/docs/Backend.md +295 -295
  12. package/docs/Components.md +84 -84
  13. package/docs/Creating pages.md +64 -64
  14. package/docs/Deploy.md +189 -189
  15. package/docs/Head and SEO.md +138 -138
  16. package/docs/Javascript.md +50 -50
  17. package/docs/Styling with SCSS.md +141 -141
  18. package/nginx.conf +75 -75
  19. package/package.json +1 -1
  20. package/src/backend/.htaccess +6 -6
  21. package/src/backend/_core/composer.json +5 -5
  22. package/src/backend/_core/composer.lock +492 -492
  23. package/src/backend/_core/index.js +267 -267
  24. package/src/backend/_core/index.php +147 -147
  25. package/src/backend/_core/init.js +52 -52
  26. package/src/backend/_core/init.php +33 -33
  27. package/src/backend/_core/modules/RateLimiter.js +58 -58
  28. package/src/backend/_core/modules/RateLimiter.php +30 -30
  29. package/src/backend/_core/modules/Response.js +59 -59
  30. package/src/backend/_core/modules/Response.php +48 -48
  31. package/src/backend/api/protected/example-protected.js +23 -23
  32. package/src/backend/api/protected/example-protected.php +16 -16
  33. package/src/backend/api/public/example-public.js +24 -24
  34. package/src/backend/api/public/example-public.php +16 -16
  35. package/src/backend/backend-node.service.example +30 -30
  36. package/src/backend/database/Database.js +46 -46
  37. package/src/backend/database/Database.php +23 -23
  38. package/src/backend/example.config.js +37 -37
  39. package/src/backend/example.config.php +27 -27
  40. package/src/backend/package.json +18 -18
  41. package/src/backend/web.config +16 -16
  42. package/src/frontend/.htaccess +51 -51
  43. package/src/frontend/404.njk +17 -17
  44. package/src/frontend/assets/brand/favicon.svg +54 -54
  45. package/src/frontend/assets/brand/logo.svg +54 -54
  46. package/src/frontend/components/global/footer.njk +25 -25
  47. package/src/frontend/components/global/header.njk +6 -6
  48. package/src/frontend/components/welcome.njk +114 -114
  49. package/src/frontend/data/site.json +48 -48
  50. package/src/frontend/index.njk +8 -8
  51. package/src/frontend/js/modules/exampleModule.js +2 -2
  52. package/src/frontend/js/pages/404.js +6 -6
  53. package/src/frontend/js/pages/homepage.js +6 -6
  54. package/src/frontend/layouts/base.njk +132 -132
  55. package/src/frontend/layouts/page-components.njk +13 -13
  56. package/src/frontend/llms.njk +17 -17
  57. package/src/frontend/robots.njk +7 -7
  58. package/src/frontend/scss/modules/_animations.scss +24 -24
  59. package/src/frontend/scss/modules/_footer.scss +27 -27
  60. package/src/frontend/scss/modules/_global.scss +47 -47
  61. package/src/frontend/scss/modules/_header.scss +27 -27
  62. package/src/frontend/scss/modules/_mobile.scss +29 -29
  63. package/src/frontend/scss/modules/_root.scss +34 -34
  64. package/src/frontend/scss/modules/_typography.scss +14 -14
  65. package/src/frontend/scss/modules/frameworks/_bootstrap.scss +109 -109
  66. package/src/frontend/scss/modules/frameworks/_bulma.scss +108 -108
  67. package/src/frontend/scss/modules/frameworks/_foundation.scss +138 -139
  68. package/src/frontend/scss/modules/frameworks/_uikit.scss +109 -109
  69. package/src/frontend/scss/pages/404.scss +27 -27
  70. package/src/frontend/scss/pages/homepage.scss +22 -22
  71. package/src/frontend/sitemap.njk +17 -17
  72. package/src/frontend/ts/modules/exampleModule.ts +2 -2
  73. package/src/frontend/ts/pages/404.ts +6 -6
  74. package/src/frontend/ts/pages/homepage.ts +6 -6
  75. package/src/frontend/web.config +55 -55
  76. package/tools/config/messages.json +3 -1
  77. package/tools/res/templates/template.js +6 -6
  78. package/tools/res/templates/template.njk +8 -8
  79. package/tools/res/templates/template.scss +22 -22
  80. package/tools/res/templates/template.ts +6 -6
  81. package/tsconfig.json +24 -24
@@ -1,110 +1,110 @@
1
- // ╔══════════════════════════════════════════════════════╗
2
- // ║ BOOTSTRAP MODULES ║
3
- // ║ Comment out any module you don't need to improve ║
4
- // ║ performance. Core section is required by all others ║
5
- // ╚══════════════════════════════════════════════════════╝
6
-
7
- // Imports can be filtered by commenting them
8
- // Example:
9
- // @import "bootstrap/scss/example-bootstrap-module";
10
-
11
- //==========================
12
- // 1️⃣ CORE – Functions and variables
13
- // ⚠️ Do not comment these out — required by all other modules
14
- //==========================
15
- @import "bootstrap/scss/functions"; // Bootstrap SCSS functions
16
- @import "bootstrap/scss/variables"; // Core variables (colors, spacing, fonts)
17
- @import "bootstrap/scss/variables-dark"; // Dark theme variables
18
- @import "bootstrap/scss/maps"; // Maps for spacing, colors, breakpoints
19
- @import "bootstrap/scss/mixins"; // Reusable SCSS mixins
20
- @import "bootstrap/scss/utilities"; // Utility helpers
21
- @import "bootstrap/scss/root"; // Root CSS (custom properties)
22
- @import "bootstrap/scss/placeholders"; // Placeholder selectors
23
-
24
- //==========================
25
- // 2️⃣ VENDOR
26
- //==========================
27
- @import "bootstrap/scss/vendor/rfs"; // Responsive font sizes
28
-
29
- //==========================
30
- // 3️⃣ BASE – Base styles
31
- //==========================
32
- @import "bootstrap/scss/reboot"; // CSS reset / normalize
33
- @import "bootstrap/scss/type"; // Typography (headings, paragraphs)
34
- @import "bootstrap/scss/images"; // Image styles
35
- @import "bootstrap/scss/containers"; // Containers
36
- @import "bootstrap/scss/transitions"; // CSS transitions
37
-
38
- //==========================
39
- // 4️⃣ LAYOUT – Layout helpers
40
- //==========================
41
- @import "bootstrap/scss/grid"; // Grid system
42
- @import "bootstrap/scss/helpers"; // Helper classes
43
-
44
- //==========================
45
- // 5️⃣ HELPERS – Sub-modules
46
- //==========================
47
- @import "bootstrap/scss/helpers/clearfix"; // Clearfix
48
- @import "bootstrap/scss/helpers/color-bg"; // Color background
49
- @import "bootstrap/scss/helpers/colored-links"; // Colored links
50
- @import "bootstrap/scss/helpers/focus-ring"; // Focus ring
51
- @import "bootstrap/scss/helpers/icon-link"; // Icon links
52
- @import "bootstrap/scss/helpers/position"; // Position helpers
53
- @import "bootstrap/scss/helpers/ratio"; // Aspect ratio
54
- @import "bootstrap/scss/helpers/stacks"; // Stack helpers
55
- @import "bootstrap/scss/helpers/stretched-link"; // Stretched link
56
- @import "bootstrap/scss/helpers/text-truncation"; // Text truncation
57
- @import "bootstrap/scss/helpers/visually-hidden"; // Visually hidden
58
- @import "bootstrap/scss/helpers/vr"; // Vertical rule
59
-
60
- //==========================
61
- // 6️⃣ UTILITIES – Sub-modules
62
- //==========================
63
- @import "bootstrap/scss/utilities/api"; // Utilities API
64
-
65
- //==========================
66
- // 7️⃣ FORMS – Sub-modules
67
- //==========================
68
- @import "bootstrap/scss/forms"; // Forms loader
69
- @import "bootstrap/scss/forms/labels"; // Labels
70
- @import "bootstrap/scss/forms/form-text"; // Form text
71
- @import "bootstrap/scss/forms/form-control"; // Inputs and textareas
72
- @import "bootstrap/scss/forms/form-select"; // Select dropdowns
73
- @import "bootstrap/scss/forms/form-check"; // Checkboxes and radios
74
- @import "bootstrap/scss/forms/form-range"; // Range sliders
75
- @import "bootstrap/scss/forms/floating-labels"; // Floating labels
76
- @import "bootstrap/scss/forms/input-group"; // Input groups
77
- @import "bootstrap/scss/forms/validation"; // Validation states
78
-
79
- //==========================
80
- // 8️⃣ COMPONENTS – All Bootstrap components
81
- //==========================
82
- @import "bootstrap/scss/alert"; // Alerts
83
- @import "bootstrap/scss/badge"; // Badges
84
- @import "bootstrap/scss/breadcrumb"; // Breadcrumbs
85
- @import "bootstrap/scss/buttons"; // Buttons
86
- @import "bootstrap/scss/button-group"; // Button groups
87
- @import "bootstrap/scss/card"; // Cards
88
- @import "bootstrap/scss/carousel"; // Carousel
89
- @import "bootstrap/scss/close"; // Close (×) button
90
- @import "bootstrap/scss/dropdown"; // Dropdowns
91
- @import "bootstrap/scss/list-group"; // List groups
92
- @import "bootstrap/scss/modal"; // Modals
93
- @import "bootstrap/scss/nav"; // Nav
94
- @import "bootstrap/scss/navbar"; // Navbar
95
- @import "bootstrap/scss/offcanvas"; // Offcanvas component
96
- @import "bootstrap/scss/pagination"; // Pagination
97
- @import "bootstrap/scss/popover"; // Popovers
98
- @import "bootstrap/scss/progress"; // Progress bars
99
- @import "bootstrap/scss/spinners"; // Spinners
100
- @import "bootstrap/scss/toasts"; // Toasts
101
- @import "bootstrap/scss/tooltip"; // Tooltips
102
- @import "bootstrap/scss/accordion"; // Accordion
103
- @import "bootstrap/scss/tables"; // Tables
104
-
105
- //==========================
106
- // 9️⃣ ICONS
107
- //==========================
108
- $bootstrap-icons-font-src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
109
- url("../fonts/bootstrap-icons.woff") format("woff");
1
+ // ╔══════════════════════════════════════════════════════╗
2
+ // ║ BOOTSTRAP MODULES ║
3
+ // ║ Comment out any module you don't need to improve ║
4
+ // ║ performance. Core section is required by all others ║
5
+ // ╚══════════════════════════════════════════════════════╝
6
+
7
+ // Imports can be filtered by commenting them
8
+ // Example:
9
+ // @import "bootstrap/scss/example-bootstrap-module";
10
+
11
+ //==========================
12
+ // 1️⃣ CORE – Functions and variables
13
+ // ⚠️ Do not comment these out — required by all other modules
14
+ //==========================
15
+ @import "bootstrap/scss/functions"; // Bootstrap SCSS functions
16
+ @import "bootstrap/scss/variables"; // Core variables (colors, spacing, fonts)
17
+ @import "bootstrap/scss/variables-dark"; // Dark theme variables
18
+ @import "bootstrap/scss/maps"; // Maps for spacing, colors, breakpoints
19
+ @import "bootstrap/scss/mixins"; // Reusable SCSS mixins
20
+ @import "bootstrap/scss/utilities"; // Utility helpers
21
+ @import "bootstrap/scss/root"; // Root CSS (custom properties)
22
+ @import "bootstrap/scss/placeholders"; // Placeholder selectors
23
+
24
+ //==========================
25
+ // 2️⃣ VENDOR
26
+ //==========================
27
+ @import "bootstrap/scss/vendor/rfs"; // Responsive font sizes
28
+
29
+ //==========================
30
+ // 3️⃣ BASE – Base styles
31
+ //==========================
32
+ @import "bootstrap/scss/reboot"; // CSS reset / normalize
33
+ @import "bootstrap/scss/type"; // Typography (headings, paragraphs)
34
+ @import "bootstrap/scss/images"; // Image styles
35
+ @import "bootstrap/scss/containers"; // Containers
36
+ @import "bootstrap/scss/transitions"; // CSS transitions
37
+
38
+ //==========================
39
+ // 4️⃣ LAYOUT – Layout helpers
40
+ //==========================
41
+ @import "bootstrap/scss/grid"; // Grid system
42
+ @import "bootstrap/scss/helpers"; // Helper classes
43
+
44
+ //==========================
45
+ // 5️⃣ HELPERS – Sub-modules
46
+ //==========================
47
+ @import "bootstrap/scss/helpers/clearfix"; // Clearfix
48
+ @import "bootstrap/scss/helpers/color-bg"; // Color background
49
+ @import "bootstrap/scss/helpers/colored-links"; // Colored links
50
+ @import "bootstrap/scss/helpers/focus-ring"; // Focus ring
51
+ @import "bootstrap/scss/helpers/icon-link"; // Icon links
52
+ @import "bootstrap/scss/helpers/position"; // Position helpers
53
+ @import "bootstrap/scss/helpers/ratio"; // Aspect ratio
54
+ @import "bootstrap/scss/helpers/stacks"; // Stack helpers
55
+ @import "bootstrap/scss/helpers/stretched-link"; // Stretched link
56
+ @import "bootstrap/scss/helpers/text-truncation"; // Text truncation
57
+ @import "bootstrap/scss/helpers/visually-hidden"; // Visually hidden
58
+ @import "bootstrap/scss/helpers/vr"; // Vertical rule
59
+
60
+ //==========================
61
+ // 6️⃣ UTILITIES – Sub-modules
62
+ //==========================
63
+ @import "bootstrap/scss/utilities/api"; // Utilities API
64
+
65
+ //==========================
66
+ // 7️⃣ FORMS – Sub-modules
67
+ //==========================
68
+ @import "bootstrap/scss/forms"; // Forms loader
69
+ @import "bootstrap/scss/forms/labels"; // Labels
70
+ @import "bootstrap/scss/forms/form-text"; // Form text
71
+ @import "bootstrap/scss/forms/form-control"; // Inputs and textareas
72
+ @import "bootstrap/scss/forms/form-select"; // Select dropdowns
73
+ @import "bootstrap/scss/forms/form-check"; // Checkboxes and radios
74
+ @import "bootstrap/scss/forms/form-range"; // Range sliders
75
+ @import "bootstrap/scss/forms/floating-labels"; // Floating labels
76
+ @import "bootstrap/scss/forms/input-group"; // Input groups
77
+ @import "bootstrap/scss/forms/validation"; // Validation states
78
+
79
+ //==========================
80
+ // 8️⃣ COMPONENTS – All Bootstrap components
81
+ //==========================
82
+ @import "bootstrap/scss/alert"; // Alerts
83
+ @import "bootstrap/scss/badge"; // Badges
84
+ @import "bootstrap/scss/breadcrumb"; // Breadcrumbs
85
+ @import "bootstrap/scss/buttons"; // Buttons
86
+ @import "bootstrap/scss/button-group"; // Button groups
87
+ @import "bootstrap/scss/card"; // Cards
88
+ @import "bootstrap/scss/carousel"; // Carousel
89
+ @import "bootstrap/scss/close"; // Close (×) button
90
+ @import "bootstrap/scss/dropdown"; // Dropdowns
91
+ @import "bootstrap/scss/list-group"; // List groups
92
+ @import "bootstrap/scss/modal"; // Modals
93
+ @import "bootstrap/scss/nav"; // Nav
94
+ @import "bootstrap/scss/navbar"; // Navbar
95
+ @import "bootstrap/scss/offcanvas"; // Offcanvas component
96
+ @import "bootstrap/scss/pagination"; // Pagination
97
+ @import "bootstrap/scss/popover"; // Popovers
98
+ @import "bootstrap/scss/progress"; // Progress bars
99
+ @import "bootstrap/scss/spinners"; // Spinners
100
+ @import "bootstrap/scss/toasts"; // Toasts
101
+ @import "bootstrap/scss/tooltip"; // Tooltips
102
+ @import "bootstrap/scss/accordion"; // Accordion
103
+ @import "bootstrap/scss/tables"; // Tables
104
+
105
+ //==========================
106
+ // 9️⃣ ICONS
107
+ //==========================
108
+ $bootstrap-icons-font-src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
109
+ url("../fonts/bootstrap-icons.woff") format("woff");
110
110
  @import "bootstrap-icons/font/bootstrap-icons";
@@ -1,109 +1,109 @@
1
- // ╔══════════════════════════════════════════════════════╗
2
- // ║ BULMA MODULES ║
3
- // ║ Comment out any module you don't need to improve ║
4
- // ║ performance. Core section is required by all others ║
5
- // ╚══════════════════════════════════════════════════════╝
6
-
7
- // Imports can be filtered by commenting them
8
- // Example:
9
- // @import "bulma/sass/example-bulma-module";
10
-
11
- //==========================
12
- // 1️⃣ CORE – Utilities and variables
13
- // ⚠️ Do not comment these out — required by all other modules
14
- //==========================
15
- @import "bulma/sass/utilities/initial-variables"; // Base variables (colors, sizes, fonts)
16
- @import "bulma/sass/utilities/functions"; // SCSS functions
17
- @import "bulma/sass/utilities/derived-variables"; // Variables derived from initial ones
18
- @import "bulma/sass/utilities/css-variables"; // CSS custom properties
19
- @import "bulma/sass/utilities/controls"; // Control base styles (inputs, buttons)
20
- @import "bulma/sass/utilities/extends"; // Shared extends
21
- @import "bulma/sass/utilities/mixins"; // Reusable SCSS mixins
22
-
23
- //==========================
24
- // 2️⃣ BASE – Reset and base styles
25
- //==========================
26
- @import "bulma/sass/base/minireset"; // CSS reset
27
- @import "bulma/sass/base/generic"; // Generic base styles
28
- @import "bulma/sass/base/animations"; // Built-in animations
29
- @import "bulma/sass/base/skeleton"; // Skeleton loading styles
30
-
31
- //==========================
32
- // 3️⃣ THEMES
33
- //==========================
34
- @import "bulma/sass/themes/setup"; // Theme setup (required)
35
- @import "bulma/sass/themes/light"; // Light theme
36
- // @import "bulma/sass/themes/dark";// Dark theme
37
-
38
- //==========================
39
- // 4️⃣ LAYOUT
40
- //==========================
41
- @import "bulma/sass/layout/container"; // Containers
42
- @import "bulma/sass/layout/section"; // Sections
43
- @import "bulma/sass/layout/footer"; // Footer
44
- @import "bulma/sass/layout/hero"; // Hero banners
45
- @import "bulma/sass/layout/level"; // Level (horizontal layout)
46
- @import "bulma/sass/layout/media"; // Media object
47
-
48
- //==========================
49
- // 5️⃣ GRID
50
- //==========================
51
- @import "bulma/sass/grid/columns"; // Flexbox column grid
52
- @import "bulma/sass/grid/grid"; // CSS grid
53
-
54
- //==========================
55
- // 6️⃣ ELEMENTS – Basic HTML elements
56
- //==========================
57
- @import "bulma/sass/elements/block"; // Block spacing
58
- @import "bulma/sass/elements/box"; // Box container
59
- @import "bulma/sass/elements/button"; // Buttons
60
- @import "bulma/sass/elements/content"; // Rich text content
61
- @import "bulma/sass/elements/delete"; // Delete/close button
62
- @import "bulma/sass/elements/icon"; // Icons
63
- @import "bulma/sass/elements/image"; // Images
64
- @import "bulma/sass/elements/loader"; // Loader spinner
65
- @import "bulma/sass/elements/notification"; // Notifications
66
- @import "bulma/sass/elements/progress"; // Progress bars
67
- @import "bulma/sass/elements/table"; // Tables
68
- @import "bulma/sass/elements/tag"; // Tags/badges
69
- @import "bulma/sass/elements/title"; // Titles and subtitles
70
-
71
- //==========================
72
- // 7️⃣ FORM
73
- //==========================
74
- @import "bulma/sass/form/shared"; // Shared form styles
75
- @import "bulma/sass/form/tools"; // Form tools and field wrappers
76
- @import "bulma/sass/form/input-textarea"; // Inputs and textareas
77
- @import "bulma/sass/form/select"; // Select dropdowns
78
- @import "bulma/sass/form/checkbox-radio"; // Checkboxes and radios
79
- @import "bulma/sass/form/file"; // File upload
80
-
81
- //==========================
82
- // 8️⃣ COMPONENTS
83
- //==========================
84
- @import "bulma/sass/components/breadcrumb"; // Breadcrumbs
85
- @import "bulma/sass/components/card"; // Cards
86
- @import "bulma/sass/components/dropdown"; // Dropdowns
87
- @import "bulma/sass/components/menu"; // Vertical menu
88
- @import "bulma/sass/components/message"; // Message boxes
89
- @import "bulma/sass/components/modal"; // Modals
90
- @import "bulma/sass/components/navbar"; // Navbar
91
- @import "bulma/sass/components/pagination"; // Pagination
92
- @import "bulma/sass/components/panel"; // Panel
93
- @import "bulma/sass/components/tabs"; // Tabs
94
-
95
- //==========================
96
- // 9️⃣ HELPERS
97
- //==========================
98
- @import "bulma/sass/helpers/aspect-ratio"; // Aspect ratio
99
- @import "bulma/sass/helpers/border"; // Border utilities
100
- @import "bulma/sass/helpers/color"; // Color utilities
101
- @import "bulma/sass/helpers/flexbox"; // Flexbox utilities
102
- @import "bulma/sass/helpers/float"; // Float utilities
103
- @import "bulma/sass/helpers/gap"; // Gap utilities
104
- @import "bulma/sass/helpers/other"; // Other utilities
105
- @import "bulma/sass/helpers/overflow"; // Overflow utilities
106
- @import "bulma/sass/helpers/position"; // Position utilities
107
- @import "bulma/sass/helpers/spacing"; // Spacing utilities (m-, p-)
108
- @import "bulma/sass/helpers/typography"; // Typography utilities
1
+ // ╔══════════════════════════════════════════════════════╗
2
+ // ║ BULMA MODULES ║
3
+ // ║ Comment out any module you don't need to improve ║
4
+ // ║ performance. Core section is required by all others ║
5
+ // ╚══════════════════════════════════════════════════════╝
6
+
7
+ // Imports can be filtered by commenting them
8
+ // Example:
9
+ // @import "bulma/sass/example-bulma-module";
10
+
11
+ //==========================
12
+ // 1️⃣ CORE – Utilities and variables
13
+ // ⚠️ Do not comment these out — required by all other modules
14
+ //==========================
15
+ @import "bulma/sass/utilities/initial-variables"; // Base variables (colors, sizes, fonts)
16
+ @import "bulma/sass/utilities/functions"; // SCSS functions
17
+ @import "bulma/sass/utilities/derived-variables"; // Variables derived from initial ones
18
+ @import "bulma/sass/utilities/css-variables"; // CSS custom properties
19
+ @import "bulma/sass/utilities/controls"; // Control base styles (inputs, buttons)
20
+ @import "bulma/sass/utilities/extends"; // Shared extends
21
+ @import "bulma/sass/utilities/mixins"; // Reusable SCSS mixins
22
+
23
+ //==========================
24
+ // 2️⃣ BASE – Reset and base styles
25
+ //==========================
26
+ @import "bulma/sass/base/minireset"; // CSS reset
27
+ @import "bulma/sass/base/generic"; // Generic base styles
28
+ @import "bulma/sass/base/animations"; // Built-in animations
29
+ @import "bulma/sass/base/skeleton"; // Skeleton loading styles
30
+
31
+ //==========================
32
+ // 3️⃣ THEMES
33
+ //==========================
34
+ @import "bulma/sass/themes/setup"; // Theme setup (required)
35
+ @import "bulma/sass/themes/light"; // Light theme
36
+ // @import "bulma/sass/themes/dark";// Dark theme
37
+
38
+ //==========================
39
+ // 4️⃣ LAYOUT
40
+ //==========================
41
+ @import "bulma/sass/layout/container"; // Containers
42
+ @import "bulma/sass/layout/section"; // Sections
43
+ @import "bulma/sass/layout/footer"; // Footer
44
+ @import "bulma/sass/layout/hero"; // Hero banners
45
+ @import "bulma/sass/layout/level"; // Level (horizontal layout)
46
+ @import "bulma/sass/layout/media"; // Media object
47
+
48
+ //==========================
49
+ // 5️⃣ GRID
50
+ //==========================
51
+ @import "bulma/sass/grid/columns"; // Flexbox column grid
52
+ @import "bulma/sass/grid/grid"; // CSS grid
53
+
54
+ //==========================
55
+ // 6️⃣ ELEMENTS – Basic HTML elements
56
+ //==========================
57
+ @import "bulma/sass/elements/block"; // Block spacing
58
+ @import "bulma/sass/elements/box"; // Box container
59
+ @import "bulma/sass/elements/button"; // Buttons
60
+ @import "bulma/sass/elements/content"; // Rich text content
61
+ @import "bulma/sass/elements/delete"; // Delete/close button
62
+ @import "bulma/sass/elements/icon"; // Icons
63
+ @import "bulma/sass/elements/image"; // Images
64
+ @import "bulma/sass/elements/loader"; // Loader spinner
65
+ @import "bulma/sass/elements/notification"; // Notifications
66
+ @import "bulma/sass/elements/progress"; // Progress bars
67
+ @import "bulma/sass/elements/table"; // Tables
68
+ @import "bulma/sass/elements/tag"; // Tags/badges
69
+ @import "bulma/sass/elements/title"; // Titles and subtitles
70
+
71
+ //==========================
72
+ // 7️⃣ FORM
73
+ //==========================
74
+ @import "bulma/sass/form/shared"; // Shared form styles
75
+ @import "bulma/sass/form/tools"; // Form tools and field wrappers
76
+ @import "bulma/sass/form/input-textarea"; // Inputs and textareas
77
+ @import "bulma/sass/form/select"; // Select dropdowns
78
+ @import "bulma/sass/form/checkbox-radio"; // Checkboxes and radios
79
+ @import "bulma/sass/form/file"; // File upload
80
+
81
+ //==========================
82
+ // 8️⃣ COMPONENTS
83
+ //==========================
84
+ @import "bulma/sass/components/breadcrumb"; // Breadcrumbs
85
+ @import "bulma/sass/components/card"; // Cards
86
+ @import "bulma/sass/components/dropdown"; // Dropdowns
87
+ @import "bulma/sass/components/menu"; // Vertical menu
88
+ @import "bulma/sass/components/message"; // Message boxes
89
+ @import "bulma/sass/components/modal"; // Modals
90
+ @import "bulma/sass/components/navbar"; // Navbar
91
+ @import "bulma/sass/components/pagination"; // Pagination
92
+ @import "bulma/sass/components/panel"; // Panel
93
+ @import "bulma/sass/components/tabs"; // Tabs
94
+
95
+ //==========================
96
+ // 9️⃣ HELPERS
97
+ //==========================
98
+ @import "bulma/sass/helpers/aspect-ratio"; // Aspect ratio
99
+ @import "bulma/sass/helpers/border"; // Border utilities
100
+ @import "bulma/sass/helpers/color"; // Color utilities
101
+ @import "bulma/sass/helpers/flexbox"; // Flexbox utilities
102
+ @import "bulma/sass/helpers/float"; // Float utilities
103
+ @import "bulma/sass/helpers/gap"; // Gap utilities
104
+ @import "bulma/sass/helpers/other"; // Other utilities
105
+ @import "bulma/sass/helpers/overflow"; // Overflow utilities
106
+ @import "bulma/sass/helpers/position"; // Position utilities
107
+ @import "bulma/sass/helpers/spacing"; // Spacing utilities (m-, p-)
108
+ @import "bulma/sass/helpers/typography"; // Typography utilities
109
109
  @import "bulma/sass/helpers/visibility"; // Visibility utilities