railsui 3.1.4 → 3.2.0
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.
- checksums.yaml +4 -4
- data/.claude/settings.local.json +10 -0
- data/Gemfile.lock +29 -27
- data/README.md +1 -1
- data/app/assets/images/tailwind-corgie-thumbnail.jpg +0 -0
- data/app/assets/stylesheets/railsui/railsui.css +18 -0
- data/app/helpers/railsui/application_helper.rb +22 -17
- data/app/helpers/railsui/host_route_fallback_helper.rb +18 -0
- data/app/javascript/controllers/alert_controller.js +0 -0
- data/app/models/railsui/default.rb +28 -109
- data/app/views/railsui/admin/fields/_color.html.erb +6 -1
- data/app/views/railsui/admin/fields/_theme.html.erb +16 -8
- data/app/views/railsui/default/_launchpad.html.erb +1 -1
- data/app/views/railsui/shared/_flash_messages.html.erb +2 -2
- data/app/views/railsui/shared/_full_access_cta.html.erb +27 -0
- data/app/views/railsui/shared/_global_nav.html.erb +2 -2
- data/app/views/railsui/shared/_preview.html.erb +1 -1
- data/app/views/railsui/shared/_rui_email_preview.html.erb +60 -3
- data/app/views/railsui/systems/forms/form_builder.html.erb +171 -0
- data/app/views/railsui/themes/corgie/_components.html.erb +7 -0
- data/app/views/railsui/themes/corgie/_content.html.erb +9 -0
- data/app/views/railsui/themes/corgie/_fonts.html.erb +0 -0
- data/app/views/railsui/themes/corgie/_forms.html.erb +19 -0
- data/app/views/railsui/themes/corgie/_icons.html.erb +125 -0
- data/app/views/railsui/themes/corgie/_nav.html.erb +166 -0
- data/app/views/railsui/themes/corgie/_scaffolds.html.erb +42 -0
- data/app/views/railsui/themes/corgie/authentication/_overview.html.erb +5 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_change_password.html.erb +74 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_confirmation.html.erb +63 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_edit.html.erb +103 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_overview.html.erb +225 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_reset_password.html.erb +60 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_signin.html.erb +93 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_signup.html.erb +98 -0
- data/app/views/railsui/themes/corgie/authentication/devise/_unlocks.html.erb +60 -0
- data/app/views/railsui/themes/corgie/authentication/static/_change_password.html.erb +67 -0
- data/app/views/railsui/themes/corgie/authentication/static/_confirmation.html.erb +58 -0
- data/app/views/railsui/themes/corgie/authentication/static/_overview.html.erb +204 -0
- data/app/views/railsui/themes/corgie/authentication/static/_reset_password.html.erb +59 -0
- data/app/views/railsui/themes/corgie/authentication/static/_signin.html.erb +102 -0
- data/app/views/railsui/themes/corgie/authentication/static/_signup.html.erb +108 -0
- data/app/views/railsui/themes/corgie/authentication/static/_unlocks.html.erb +60 -0
- data/app/views/railsui/themes/corgie/components/_accordion.html.erb +17 -0
- data/app/views/railsui/themes/corgie/components/_alert.html.erb +23 -0
- data/app/views/railsui/themes/corgie/components/_avatar.html.erb +13 -0
- data/app/views/railsui/themes/corgie/components/_badge.html.erb +20 -0
- data/app/views/railsui/themes/corgie/components/_breadcrumb.html.erb +14 -0
- data/app/views/railsui/themes/corgie/components/_button.html.erb +16 -0
- data/app/views/railsui/themes/corgie/components/_card.html.erb +23 -0
- data/app/views/railsui/themes/corgie/components/_combobox.html.erb +11 -0
- data/app/views/railsui/themes/corgie/components/_dropdown.html.erb +22 -0
- data/app/views/railsui/themes/corgie/components/_flash.html.erb +17 -0
- data/app/views/railsui/themes/corgie/components/_modal.html.erb +27 -0
- data/app/views/railsui/themes/corgie/components/_navigation.html.erb +7 -0
- data/app/views/railsui/themes/corgie/components/_pagination.html.erb +15 -0
- data/app/views/railsui/themes/corgie/components/_tab.html.erb +23 -0
- data/app/views/railsui/themes/corgie/components/_toast.html.erb +75 -0
- data/app/views/railsui/themes/corgie/components/_tooltip.html.erb +77 -0
- data/app/views/railsui/themes/corgie/components/accordion/_contained.html.erb +90 -0
- data/app/views/railsui/themes/corgie/components/accordion/_flush.html.erb +92 -0
- data/app/views/railsui/themes/corgie/components/alert/_dismissable.html.erb +45 -0
- data/app/views/railsui/themes/corgie/components/alert/_with_accent_border.html.erb +32 -0
- data/app/views/railsui/themes/corgie/components/alert/_with_actions.html.erb +57 -0
- data/app/views/railsui/themes/corgie/components/alert/_with_description.html.erb +41 -0
- data/app/views/railsui/themes/corgie/components/alert/_with_list.html.erb +46 -0
- data/app/views/railsui/themes/corgie/components/avatar/_circle.html.erb +53 -0
- data/app/views/railsui/themes/corgie/components/avatar/_rounded.html.erb +53 -0
- data/app/views/railsui/themes/corgie/components/badge/_basic.html.erb +70 -0
- data/app/views/railsui/themes/corgie/components/badge/_outline.html.erb +67 -0
- data/app/views/railsui/themes/corgie/components/badge/_pill.html.erb +67 -0
- data/app/views/railsui/themes/corgie/components/badge/_tag.html.erb +277 -0
- data/app/views/railsui/themes/corgie/components/breadcrumb/_article.html.erb +88 -0
- data/app/views/railsui/themes/corgie/components/breadcrumb/_base.html.erb +77 -0
- data/app/views/railsui/themes/corgie/components/button/_base.html.erb +38 -0
- data/app/views/railsui/themes/corgie/components/button/_expanded.html.erb +24 -0
- data/app/views/railsui/themes/corgie/components/button/_sizes.html.erb +31 -0
- data/app/views/railsui/themes/corgie/components/card/_article.html.erb +119 -0
- data/app/views/railsui/themes/corgie/components/card/_base.html.erb +34 -0
- data/app/views/railsui/themes/corgie/components/card/_feature.html.erb +54 -0
- data/app/views/railsui/themes/corgie/components/card/_team_member.html.erb +60 -0
- data/app/views/railsui/themes/corgie/components/card/_value.html.erb +54 -0
- data/app/views/railsui/themes/corgie/components/combobox/_base.html.erb +250 -0
- data/app/views/railsui/themes/corgie/components/dropdown/_base.html.erb +61 -0
- data/app/views/railsui/themes/corgie/components/dropdown/_dropdown.html.erb +24 -0
- data/app/views/railsui/themes/corgie/components/dropdown/_dropdown_w_icon.html.erb +27 -0
- data/app/views/railsui/themes/corgie/components/dropdown/_right_aligned.html.erb +82 -0
- data/app/views/railsui/themes/corgie/components/dropdown/_with_dividers.html.erb +93 -0
- data/app/views/railsui/themes/corgie/components/dropdown/_with_icons.html.erb +85 -0
- data/app/views/railsui/themes/corgie/components/dropdown/tutorial/_1.html.erb +44 -0
- data/app/views/railsui/themes/corgie/components/dropdown/tutorial/_2.html.erb +16 -0
- data/app/views/railsui/themes/corgie/components/dropdown/tutorial/_3.html.erb +16 -0
- data/app/views/railsui/themes/corgie/components/dropdown/tutorial/_4.html.erb +27 -0
- data/app/views/railsui/themes/corgie/components/dropdown/tutorial/_dependencies.html.erb +3 -0
- data/app/views/railsui/themes/corgie/components/dropdown/tutorial/_tutorial.html.erb +25 -0
- data/app/views/railsui/themes/corgie/components/flash/_alert.html.erb +29 -0
- data/app/views/railsui/themes/corgie/components/flash/_dynamic.html.erb +46 -0
- data/app/views/railsui/themes/corgie/components/flash/_notice.html.erb +29 -0
- data/app/views/railsui/themes/corgie/components/modal/_base.html.erb +110 -0
- data/app/views/railsui/themes/corgie/components/modal/_centered_dual_action.html.erb +124 -0
- data/app/views/railsui/themes/corgie/components/modal/_dismiss_icon.html.erb +124 -0
- data/app/views/railsui/themes/corgie/components/modal/_settings.html.erb +201 -0
- data/app/views/railsui/themes/corgie/components/modal/_single_action.html.erb +119 -0
- data/app/views/railsui/themes/corgie/components/modal/_with_form.html.erb +148 -0
- data/app/views/railsui/themes/corgie/components/navigation/_base.html.erb +215 -0
- data/app/views/railsui/themes/corgie/components/navigation/_chat.html.erb +194 -0
- data/app/views/railsui/themes/corgie/components/navigation/_nav_preview.html.erb +9 -0
- data/app/views/railsui/themes/corgie/components/pagination/_contained.html.erb +131 -0
- data/app/views/railsui/themes/corgie/components/pagination/_pagy.html.erb +97 -0
- data/app/views/railsui/themes/corgie/components/pagination/_simple.html.erb +114 -0
- data/app/views/railsui/themes/corgie/components/tab/_base.html.erb +101 -0
- data/app/views/railsui/themes/corgie/components/tab/_pills.html.erb +102 -0
- data/app/views/railsui/themes/corgie/components/tab/_rounded.html.erb +104 -0
- data/app/views/railsui/themes/corgie/components/tab/_vertical.html.erb +145 -0
- data/app/views/railsui/themes/corgie/components/tab/_with_icons.html.erb +138 -0
- data/app/views/railsui/themes/corgie/components/toast/_base.html.erb +98 -0
- data/app/views/railsui/themes/corgie/components/tooltip/_base.html.erb +51 -0
- data/app/views/railsui/themes/corgie/content/_image.html.erb +31 -0
- data/app/views/railsui/themes/corgie/content/_table.html.erb +21 -0
- data/app/views/railsui/themes/corgie/content/_typography.html.erb +47 -0
- data/app/views/railsui/themes/corgie/content/image/_object_contain.html.erb +31 -0
- data/app/views/railsui/themes/corgie/content/image/_object_cover.html.erb +32 -0
- data/app/views/railsui/themes/corgie/content/image/_object_fill.html.erb +32 -0
- data/app/views/railsui/themes/corgie/content/image/_object_scale_down.html.erb +34 -0
- data/app/views/railsui/themes/corgie/content/image/_responsive.html.erb +24 -0
- data/app/views/railsui/themes/corgie/content/table/_bordered.html.erb +93 -0
- data/app/views/railsui/themes/corgie/content/table/_borderless.html.erb +92 -0
- data/app/views/railsui/themes/corgie/content/table/_comparison.html.erb +494 -0
- data/app/views/railsui/themes/corgie/content/typography/_blockquote.html.erb +41 -0
- data/app/views/railsui/themes/corgie/content/typography/_display_headings.html.erb +70 -0
- data/app/views/railsui/themes/corgie/content/typography/_fonts.html.erb +30 -0
- data/app/views/railsui/themes/corgie/content/typography/_headings.html.erb +88 -0
- data/app/views/railsui/themes/corgie/content/typography/_inline_formatting.html.erb +44 -0
- data/app/views/railsui/themes/corgie/content/typography/_lead_paragraph.html.erb +26 -0
- data/app/views/railsui/themes/corgie/content/typography/_lists.html.erb +82 -0
- data/app/views/railsui/themes/corgie/content/typography/_paragraphs.html.erb +33 -0
- data/app/views/railsui/themes/corgie/forms/_action_text.html.erb +54 -0
- data/app/views/railsui/themes/corgie/forms/_checkbox.html.erb +60 -0
- data/app/views/railsui/themes/corgie/forms/_form_builder.html.erb +487 -0
- data/app/views/railsui/themes/corgie/forms/_input.html.erb +378 -0
- data/app/views/railsui/themes/corgie/forms/_input_group.html.erb +485 -0
- data/app/views/railsui/themes/corgie/forms/_radio.html.erb +92 -0
- data/app/views/railsui/themes/corgie/forms/_select.html.erb +118 -0
- data/app/views/railsui/themes/corgie/forms/_switch.html.erb +60 -0
- data/app/views/railsui/themes/corgie/forms/_validation.html.erb +52 -0
- data/app/views/railsui/themes/corgie/mailers/_devise.html.erb +44 -0
- data/app/views/railsui/themes/corgie/mailers/_layout.html.erb +536 -0
- data/app/views/railsui/themes/corgie/mailers/_mailer_preview.html.erb +523 -0
- data/app/views/railsui/themes/corgie/mailers/_minimal.html.erb +63 -0
- data/app/views/railsui/themes/corgie/mailers/_promotion.html.erb +62 -0
- data/app/views/railsui/themes/corgie/mailers/_transactional.html.erb +133 -0
- data/app/views/railsui/themes/corgie/mailers/devise/_confirmation_instructions.html.erb +34 -0
- data/app/views/railsui/themes/corgie/mailers/devise/_email_changed.html.erb +32 -0
- data/app/views/railsui/themes/corgie/mailers/devise/_password_changed.html.erb +25 -0
- data/app/views/railsui/themes/corgie/mailers/devise/_reset_password_instructions.html.erb +33 -0
- data/app/views/railsui/themes/corgie/mailers/devise/_unlock_instructions.html.erb +32 -0
- data/app/views/railsui/themes/corgie/scaffolds/_edit.html.erb +88 -0
- data/app/views/railsui/themes/corgie/scaffolds/_index.html.erb +88 -0
- data/app/views/railsui/themes/corgie/scaffolds/_new.html.erb +80 -0
- data/app/views/railsui/themes/corgie/scaffolds/_partial.html.erb +56 -0
- data/app/views/railsui/themes/corgie/scaffolds/_show.html.erb +85 -0
- data/app/views/railsui/themes/hound/_forms.html.erb +2 -0
- data/app/views/railsui/themes/hound/_nav.html.erb +2 -0
- data/app/views/railsui/themes/hound/authentication/devise/_change_password.html.erb +1 -27
- data/app/views/railsui/themes/hound/authentication/devise/_confirmation.html.erb +1 -20
- data/app/views/railsui/themes/hound/authentication/devise/_edit.html.erb +1 -44
- data/app/views/railsui/themes/hound/authentication/devise/_overview.html.erb +3 -51
- data/app/views/railsui/themes/hound/authentication/devise/_reset_password.html.erb +1 -17
- data/app/views/railsui/themes/hound/authentication/devise/_signin.html.erb +1 -30
- data/app/views/railsui/themes/hound/authentication/devise/_signup.html.erb +1 -31
- data/app/views/railsui/themes/hound/authentication/devise/_unlocks.html.erb +1 -17
- data/app/views/railsui/themes/hound/authentication/static/_change_password.html.erb +1 -32
- data/app/views/railsui/themes/hound/authentication/static/_confirmation.html.erb +1 -23
- data/app/views/railsui/themes/hound/authentication/static/_edit.html.erb +1 -39
- data/app/views/railsui/themes/hound/authentication/static/_overview.html.erb +2 -40
- data/app/views/railsui/themes/hound/authentication/static/_reset_password.html.erb +1 -22
- data/app/views/railsui/themes/hound/authentication/static/_signin.html.erb +1 -35
- data/app/views/railsui/themes/hound/authentication/static/_signup.html.erb +1 -31
- data/app/views/railsui/themes/hound/authentication/static/_unlocks.html.erb +1 -20
- data/app/views/railsui/themes/hound/components/_toast.html.erb +0 -3
- data/app/views/railsui/themes/hound/components/accordion/_contained.html.erb +0 -27
- data/app/views/railsui/themes/hound/components/accordion/_flush.html.erb +0 -27
- data/app/views/railsui/themes/hound/components/alert/_dismissable.html.erb +0 -8
- data/app/views/railsui/themes/hound/components/alert/_with_accent_border.html.erb +0 -7
- data/app/views/railsui/themes/hound/components/alert/_with_actions.html.erb +0 -11
- data/app/views/railsui/themes/hound/components/alert/_with_description.html.erb +0 -7
- data/app/views/railsui/themes/hound/components/alert/_with_list.html.erb +0 -8
- data/app/views/railsui/themes/hound/components/avatar/_circle.html.erb +0 -12
- data/app/views/railsui/themes/hound/components/avatar/_rounded.html.erb +0 -12
- data/app/views/railsui/themes/hound/components/badge/_basic.html.erb +0 -22
- data/app/views/railsui/themes/hound/components/badge/_outline.html.erb +0 -22
- data/app/views/railsui/themes/hound/components/badge/_pill.html.erb +0 -22
- data/app/views/railsui/themes/hound/components/badge/_tag.html.erb +0 -52
- data/app/views/railsui/themes/hound/components/breadcrumb/_base.html.erb +0 -14
- data/app/views/railsui/themes/hound/components/breadcrumb/_contained.html.erb +0 -14
- data/app/views/railsui/themes/hound/components/button/_base.html.erb +0 -10
- data/app/views/railsui/themes/hound/components/button/_expanded.html.erb +0 -3
- data/app/views/railsui/themes/hound/components/button/_sizes.html.erb +0 -5
- data/app/views/railsui/themes/hound/components/card/_base.html.erb +0 -6
- data/app/views/railsui/themes/hound/components/card/_user_card.html.erb +0 -13
- data/app/views/railsui/themes/hound/components/card/_user_card_dropdown.html.erb +0 -20
- data/app/views/railsui/themes/hound/components/card/_user_card_with_actions.html.erb +0 -18
- data/app/views/railsui/themes/hound/components/card/_with_action.html.erb +0 -13
- data/app/views/railsui/themes/hound/components/card/_with_header.html.erb +0 -43
- data/app/views/railsui/themes/hound/components/combobox/_base.html.erb +0 -40
- data/app/views/railsui/themes/hound/components/dropdown/_base.html.erb +0 -10
- data/app/views/railsui/themes/hound/components/dropdown/_right_aligned.html.erb +0 -14
- data/app/views/railsui/themes/hound/components/dropdown/_with_dividers.html.erb +0 -14
- data/app/views/railsui/themes/hound/components/dropdown/_with_icons.html.erb +0 -20
- data/app/views/railsui/themes/hound/components/flash/_alert.html.erb +0 -5
- data/app/views/railsui/themes/hound/components/flash/_dynamic.html.erb +0 -5
- data/app/views/railsui/themes/hound/components/flash/_notice.html.erb +0 -5
- data/app/views/railsui/themes/hound/components/modal/_base.html.erb +0 -13
- data/app/views/railsui/themes/hound/components/modal/_centered_dual_action.html.erb +0 -16
- data/app/views/railsui/themes/hound/components/modal/_dismiss_icon.html.erb +0 -20
- data/app/views/railsui/themes/hound/components/modal/_single_action.html.erb +0 -15
- data/app/views/railsui/themes/hound/components/modal/_with_form.html.erb +0 -23
- data/app/views/railsui/themes/hound/components/navigation/_base.html.erb +1 -41
- data/app/views/railsui/themes/hound/components/navigation/_with_action.html.erb +1 -38
- data/app/views/railsui/themes/hound/components/navigation/_with_dropdowns.html.erb +1 -105
- data/app/views/railsui/themes/hound/components/navigation/_with_search.html.erb +1 -41
- data/app/views/railsui/themes/hound/components/pagination/_contained.html.erb +0 -31
- data/app/views/railsui/themes/hound/components/pagination/_minimal.html.erb +0 -27
- data/app/views/railsui/themes/hound/components/pagination/_pagy.html.erb +47 -72
- data/app/views/railsui/themes/hound/components/tab/_base.html.erb +1 -18
- data/app/views/railsui/themes/hound/components/tab/_pills.html.erb +1 -18
- data/app/views/railsui/themes/hound/components/tab/_rounded.html.erb +1 -18
- data/app/views/railsui/themes/hound/components/tab/_with_icons.html.erb +1 -26
- data/app/views/railsui/themes/hound/components/toast/_base.html.erb +0 -16
- data/app/views/railsui/themes/hound/components/tooltip/_base.html.erb +0 -3
- data/app/views/railsui/themes/hound/content/image/_object_contain.html.erb +0 -5
- data/app/views/railsui/themes/hound/content/image/_object_cover.html.erb +0 -5
- data/app/views/railsui/themes/hound/content/image/_object_fill.html.erb +0 -5
- data/app/views/railsui/themes/hound/content/image/_object_scale_down.html.erb +0 -5
- data/app/views/railsui/themes/hound/content/image/_responsive.html.erb +0 -4
- data/app/views/railsui/themes/hound/content/table/_bordered.html.erb +0 -21
- data/app/views/railsui/themes/hound/content/table/_borderless.html.erb +0 -21
- data/app/views/railsui/themes/hound/content/typography/_blockquote.html.erb +0 -9
- data/app/views/railsui/themes/hound/content/typography/_display_headings.html.erb +0 -9
- data/app/views/railsui/themes/hound/content/typography/_headings.html.erb +0 -12
- data/app/views/railsui/themes/hound/content/typography/_inline_formatting.html.erb +0 -20
- data/app/views/railsui/themes/hound/content/typography/_lead_paragraph.html.erb +0 -5
- data/app/views/railsui/themes/hound/content/typography/_lists.html.erb +0 -17
- data/app/views/railsui/themes/hound/content/typography/_paragraphs.html.erb +0 -4
- data/app/views/railsui/themes/hound/forms/_action_text.html.erb +0 -6
- data/app/views/railsui/themes/hound/forms/_checkbox.html.erb +0 -9
- data/app/views/railsui/themes/hound/forms/_form_builder.html.erb +487 -0
- data/app/views/railsui/themes/hound/forms/_input.html.erb +0 -93
- data/app/views/railsui/themes/hound/forms/_input_group.html.erb +0 -83
- data/app/views/railsui/themes/hound/forms/_radio.html.erb +0 -13
- data/app/views/railsui/themes/hound/forms/_select.html.erb +0 -16
- data/app/views/railsui/themes/hound/forms/_switch.html.erb +0 -9
- data/app/views/railsui/themes/hound/forms/_validation.html.erb +0 -15
- data/app/views/railsui/themes/hound/mailers/_layout.html.erb +1 -432
- data/app/views/railsui/themes/hound/mailers/_minimal.html.erb +1 -16
- data/app/views/railsui/themes/hound/mailers/_promotion.html.erb +1 -20
- data/app/views/railsui/themes/hound/mailers/_transactional.html.erb +1 -43
- data/app/views/railsui/themes/hound/mailers/devise/_confirmation_instructions.html.erb +1 -9
- data/app/views/railsui/themes/hound/mailers/devise/_email_changed.html.erb +1 -13
- data/app/views/railsui/themes/hound/mailers/devise/_password_changed.html.erb +1 -7
- data/app/views/railsui/themes/hound/mailers/devise/_reset_password_instructions.html.erb +1 -9
- data/app/views/railsui/themes/hound/mailers/devise/_unlock_instructions.html.erb +1 -9
- data/app/views/railsui/themes/hound/scaffolds/_edit.html.erb +1 -19
- data/app/views/railsui/themes/hound/scaffolds/_index.html.erb +1 -14
- data/app/views/railsui/themes/hound/scaffolds/_new.html.erb +1 -17
- data/app/views/railsui/themes/hound/scaffolds/_partial.html.erb +1 -17
- data/app/views/railsui/themes/hound/scaffolds/_show.html.erb +1 -20
- data/app/views/railsui/themes/shepherd/_forms.html.erb +5 -3
- data/app/views/railsui/themes/shepherd/_nav.html.erb +2 -0
- data/app/views/railsui/themes/shepherd/authentication/devise/_change_password.html.erb +1 -23
- data/app/views/railsui/themes/shepherd/authentication/devise/_confirmation.html.erb +1 -12
- data/app/views/railsui/themes/shepherd/authentication/devise/_edit.html.erb +1 -74
- data/app/views/railsui/themes/shepherd/authentication/devise/_overview.html.erb +2 -57
- data/app/views/railsui/themes/shepherd/authentication/devise/_reset_password.html.erb +1 -12
- data/app/views/railsui/themes/shepherd/authentication/devise/_signin.html.erb +1 -25
- data/app/views/railsui/themes/shepherd/authentication/devise/_signup.html.erb +1 -26
- data/app/views/railsui/themes/shepherd/authentication/devise/_unlocks.html.erb +1 -12
- data/app/views/railsui/themes/shepherd/authentication/static/_change_password.html.erb +1 -23
- data/app/views/railsui/themes/shepherd/authentication/static/_confirmation.html.erb +1 -12
- data/app/views/railsui/themes/shepherd/authentication/static/_edit.html.erb +1 -67
- data/app/views/railsui/themes/shepherd/authentication/static/_overview.html.erb +1 -56
- data/app/views/railsui/themes/shepherd/authentication/static/_reset_password.html.erb +1 -12
- data/app/views/railsui/themes/shepherd/authentication/static/_signin.html.erb +1 -24
- data/app/views/railsui/themes/shepherd/authentication/static/_signup.html.erb +1 -26
- data/app/views/railsui/themes/shepherd/authentication/static/_unlocks.html.erb +1 -16
- data/app/views/railsui/themes/shepherd/components/_toast.html.erb +0 -3
- data/app/views/railsui/themes/shepherd/components/accordion/_contained.html.erb +0 -28
- data/app/views/railsui/themes/shepherd/components/accordion/_flush.html.erb +0 -27
- data/app/views/railsui/themes/shepherd/components/alert/_dismissable.html.erb +0 -8
- data/app/views/railsui/themes/shepherd/components/alert/_with_accent_border.html.erb +0 -6
- data/app/views/railsui/themes/shepherd/components/alert/_with_actions.html.erb +0 -11
- data/app/views/railsui/themes/shepherd/components/alert/_with_description.html.erb +0 -7
- data/app/views/railsui/themes/shepherd/components/alert/_with_list.html.erb +0 -8
- data/app/views/railsui/themes/shepherd/components/avatar/_circle.html.erb +0 -12
- data/app/views/railsui/themes/shepherd/components/avatar/_rounded.html.erb +0 -12
- data/app/views/railsui/themes/shepherd/components/badge/_basic.html.erb +0 -22
- data/app/views/railsui/themes/shepherd/components/badge/_outline.html.erb +0 -22
- data/app/views/railsui/themes/shepherd/components/badge/_pill.html.erb +0 -22
- data/app/views/railsui/themes/shepherd/components/badge/_tag.html.erb +0 -52
- data/app/views/railsui/themes/shepherd/components/breadcrumb/_base.html.erb +0 -14
- data/app/views/railsui/themes/shepherd/components/breadcrumb/_contained.html.erb +0 -14
- data/app/views/railsui/themes/shepherd/components/button/_base.html.erb +0 -17
- data/app/views/railsui/themes/shepherd/components/button/_expanded.html.erb +0 -3
- data/app/views/railsui/themes/shepherd/components/button/_sizes.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/components/card/_base.html.erb +0 -6
- data/app/views/railsui/themes/shepherd/components/card/_property_card.html.erb +0 -28
- data/app/views/railsui/themes/shepherd/components/card/_property_user_card.html.erb +0 -14
- data/app/views/railsui/themes/shepherd/components/card/_user_card_with_actions.html.erb +0 -12
- data/app/views/railsui/themes/shepherd/components/card/_with_action.html.erb +0 -7
- data/app/views/railsui/themes/shepherd/components/card/_with_header.html.erb +0 -7
- data/app/views/railsui/themes/shepherd/components/combobox/_base.html.erb +0 -40
- data/app/views/railsui/themes/shepherd/components/datalist/_booking_list.html.erb +0 -45
- data/app/views/railsui/themes/shepherd/components/datalist/_property_list.html.erb +0 -47
- data/app/views/railsui/themes/shepherd/components/dropdown/_base.html.erb +0 -10
- data/app/views/railsui/themes/shepherd/components/dropdown/_right_aligned.html.erb +0 -13
- data/app/views/railsui/themes/shepherd/components/dropdown/_with_dividers.html.erb +0 -14
- data/app/views/railsui/themes/shepherd/components/dropdown/_with_menu_icons.html.erb +0 -16
- data/app/views/railsui/themes/shepherd/components/flash/_alert.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/components/flash/_dynamic.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/components/flash/_notice.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/components/modal/_base.html.erb +0 -12
- data/app/views/railsui/themes/shepherd/components/modal/_centered_dual_action.html.erb +0 -16
- data/app/views/railsui/themes/shepherd/components/modal/_dismiss_icon.html.erb +0 -23
- data/app/views/railsui/themes/shepherd/components/modal/_single_action.html.erb +0 -14
- data/app/views/railsui/themes/shepherd/components/modal/_with_form.html.erb +0 -23
- data/app/views/railsui/themes/shepherd/components/navigation/_base.html.erb +0 -81
- data/app/views/railsui/themes/shepherd/components/navigation/_logged_out.html.erb +0 -22
- data/app/views/railsui/themes/shepherd/components/navigation/_with_dropdowns.html.erb +0 -88
- data/app/views/railsui/themes/shepherd/components/navigation/_with_search.html.erb +1 -83
- data/app/views/railsui/themes/shepherd/components/pagination/_contained.html.erb +0 -31
- data/app/views/railsui/themes/shepherd/components/pagination/_dark.html.erb +0 -31
- data/app/views/railsui/themes/shepherd/components/pagination/_pagy.html.erb +53 -98
- data/app/views/railsui/themes/shepherd/components/pagination/_simple.html.erb +0 -27
- data/app/views/railsui/themes/shepherd/components/tab/_base.html.erb +1 -18
- data/app/views/railsui/themes/shepherd/components/tab/_pills.html.erb +1 -18
- data/app/views/railsui/themes/shepherd/components/tab/_rounded.html.erb +1 -18
- data/app/views/railsui/themes/shepherd/components/tab/_with_icons.html.erb +1 -26
- data/app/views/railsui/themes/shepherd/components/toast/_base.html.erb +0 -16
- data/app/views/railsui/themes/shepherd/components/tooltip/_base.html.erb +0 -3
- data/app/views/railsui/themes/shepherd/content/_image_old.html.erb +0 -20
- data/app/views/railsui/themes/shepherd/content/image/_object_contain.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/content/image/_object_cover.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/content/image/_object_fill.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/content/image/_object_scale_down.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/content/image/_responsive.html.erb +0 -4
- data/app/views/railsui/themes/shepherd/content/table/_bordered.html.erb +0 -21
- data/app/views/railsui/themes/shepherd/content/table/_borderless.html.erb +0 -21
- data/app/views/railsui/themes/shepherd/content/typography/_blockquote.html.erb +0 -9
- data/app/views/railsui/themes/shepherd/content/typography/_display_headings.html.erb +0 -9
- data/app/views/railsui/themes/shepherd/content/typography/_headings.html.erb +0 -15
- data/app/views/railsui/themes/shepherd/content/typography/_inline_formatting.html.erb +0 -21
- data/app/views/railsui/themes/shepherd/content/typography/_lead_paragraph.html.erb +0 -5
- data/app/views/railsui/themes/shepherd/content/typography/_lists.html.erb +0 -17
- data/app/views/railsui/themes/shepherd/content/typography/_paragraphs.html.erb +0 -4
- data/app/views/railsui/themes/shepherd/forms/_action_text.html.erb +0 -6
- data/app/views/railsui/themes/shepherd/forms/_checkbox.html.erb +0 -9
- data/app/views/railsui/themes/shepherd/forms/_form_builder.html.erb +487 -0
- data/app/views/railsui/themes/shepherd/forms/_input.html.erb +0 -119
- data/app/views/railsui/themes/shepherd/forms/_input_group.html.erb +0 -81
- data/app/views/railsui/themes/shepherd/forms/_radio.html.erb +0 -13
- data/app/views/railsui/themes/shepherd/forms/_select.html.erb +0 -16
- data/app/views/railsui/themes/shepherd/forms/_switch.html.erb +0 -9
- data/app/views/railsui/themes/shepherd/forms/_validation.html.erb +0 -11
- data/app/views/railsui/themes/shepherd/mailers/_layout.html.erb +1 -493
- data/app/views/railsui/themes/shepherd/mailers/_minimal.html.erb +1 -16
- data/app/views/railsui/themes/shepherd/mailers/_promotion.html.erb +1 -20
- data/app/views/railsui/themes/shepherd/mailers/_transactional.html.erb +1 -43
- data/app/views/railsui/themes/shepherd/mailers/devise/_confirmation_instructions.html.erb +1 -9
- data/app/views/railsui/themes/shepherd/mailers/devise/_email_changed.html.erb +1 -12
- data/app/views/railsui/themes/shepherd/mailers/devise/_password_changed.html.erb +1 -7
- data/app/views/railsui/themes/shepherd/mailers/devise/_reset_password_instructions.html.erb +1 -9
- data/app/views/railsui/themes/shepherd/mailers/devise/_unlock_instructions.html.erb +1 -9
- data/app/views/railsui/themes/shepherd/scaffolds/_edit.html.erb +1 -19
- data/app/views/railsui/themes/shepherd/scaffolds/_index.html.erb +1 -11
- data/app/views/railsui/themes/shepherd/scaffolds/_new.html.erb +1 -17
- data/app/views/railsui/themes/shepherd/scaffolds/_partial.html.erb +1 -17
- data/app/views/railsui/themes/shepherd/scaffolds/_show.html.erb +1 -18
- data/config/pages.yml +103 -0
- data/config/routes.rb +6 -5
- data/config/theme.yml +2 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/auth-bg.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog-feature.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog1.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog2.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog3.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog4.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog5.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog6.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog7.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog8.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/blog9.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/copy.svg +6 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/pencil.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/scroll-text.svg +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/facebook.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/github.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/google.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/instagram.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/linkedin.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/twitter.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/x.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/social/youtube.svg +1 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/stethoscope.svg +8 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/icons/test-tubes.svg +11 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/logo.svg +10 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/android-chrome-192x192.png +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/android-chrome-512x512.png +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/apple-touch-icon.png +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/favicon-16x16.png +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/favicon-32x32.png +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/favicon.ico +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/favicon.svg +20 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/opengraph-mark.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/opengraph.jpg +0 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/meta/site.webmanifest +19 -0
- data/lib/generators/railsui/install/templates/themes/corgie/images/railsui/railsui.svg +3 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/character_count_controller.js +134 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/chat_controller.js +45 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/help_search_controller.js +333 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/highlight_controller.js +13 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/markdown_controller.js +106 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/search_controller.js +311 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/sidebar_controller.js +105 -0
- data/lib/generators/railsui/install/templates/themes/corgie/javascript/controllers/railsui/snippet_controller.js +223 -0
- data/lib/generators/railsui/install/templates/themes/corgie/mail/railsui_mailer/minimal.html.erb +21 -0
- data/lib/generators/railsui/install/templates/themes/corgie/mail/railsui_mailer/minimal.text.erb +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/mail/railsui_mailer/promotion.html.erb +23 -0
- data/lib/generators/railsui/install/templates/themes/corgie/mail/railsui_mailer/promotion.text.erb +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/mail/railsui_mailer/transactional.html.erb +55 -0
- data/lib/generators/railsui/install/templates/themes/corgie/mail/railsui_mailer/transactional.text.erb +22 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/actiontext.css +173 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/blog.css +29 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/buttons.css +49 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/card.css +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/chat.css +27 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/code.css +233 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/dropdown.css +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/forms.css +321 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/sidebar.css +15 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/tailwind.config.js +24 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/theme.css +77 -0
- data/lib/generators/railsui/install/templates/themes/corgie/stylesheets/railsui/typography.css +47 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/layouts/rui/railsui.html.erb +31 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/layouts/rui/railsui_admin.html.erb +30 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/layouts/rui/railsui_auth.html.erb +50 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/layouts/rui/railsui_mailer.html.erb +503 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/about.html.erb +278 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/blog.html.erb +258 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/blog_category.html.erb +261 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/blog_show.html.erb +429 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/chat_new.html.erb +68 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/chat_show.html.erb +152 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/features.html.erb +356 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/help.html.erb +123 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/home.html.erb +252 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/pricing.html.erb +397 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/privacy.html.erb +140 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/signin.html.erb +38 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/signup.html.erb +48 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/pages/terms.html.erb +182 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_account_dropdown.html.erb +46 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_email_action.html.erb +15 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_email_callout.html.erb +7 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_email_spacer.html.erb +7 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_error_messages.html.erb +10 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_faq.html.erb +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_flash.html.erb +11 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_fonts.html.erb +7 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_footer.html.erb +72 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_header.html.erb +15 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_meta.html.erb +90 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_nav.html.erb +3 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_railsui_head.html.erb +4 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_search.html.erb +32 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_sidebar.html.erb +7 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/_waves.html.erb +47 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/blog/_article.html.erb +39 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/blog/_pagination.html.erb +21 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_disclaimer.html.erb +4 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_form.html.erb +62 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_header.html.erb +47 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_history.html.erb +36 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_key_legend.html.erb +11 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_link.html.erb +17 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_message.html.erb +69 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/chat/_model_select.html.erb +55 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/common/_cta_section.html.erb +16 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/common/_feature_card.html.erb +23 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/common/_feature_check_item.html.erb +6 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/common/_social_auth_buttons.html.erb +22 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/help/_categories.html.erb +82 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/help/_faq.html.erb +45 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/help/_quick_actions.html.erb +46 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/marketing/_career.html.erb +9 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/marketing/_nav.html.erb +57 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/marketing/_team_member_card.html.erb +16 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/_modal.html.erb +84 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/_nav_item.html.erb +14 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_billing.html.erb +120 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_data_controls.html.erb +69 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_general.html.erb +92 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_notifications.html.erb +102 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_personalization.html.erb +100 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_security.html.erb +98 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/settings/panels/_title.html.erb +5 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/sidebar/_actions.html.erb +39 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/sidebar/_header.html.erb +40 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/sidebar/_history.html.erb +36 -0
- data/lib/generators/railsui/install/templates/themes/corgie/views/rui/shared/sidebar/_link.html.erb +23 -0
- data/lib/generators/railsui/install/templates/themes/hound/stylesheets/railsui/forms.css +18 -4
- data/lib/generators/railsui/install/templates/themes/hound/stylesheets/railsui/theme.css +3 -2
- data/lib/generators/railsui/install/templates/themes/shepherd/stylesheets/railsui/forms.css +12 -2
- data/lib/generators/railsui/scaffold/templates/themes/corgie/views/_form.html.erb.tt +52 -0
- data/lib/generators/railsui/scaffold/templates/themes/corgie/views/edit.html.erb.tt +25 -0
- data/lib/generators/railsui/scaffold/templates/themes/corgie/views/index.html.erb.tt +12 -0
- data/lib/generators/railsui/scaffold/templates/themes/corgie/views/new.html.erb.tt +22 -0
- data/lib/generators/railsui/scaffold/templates/themes/corgie/views/partial.html.erb.tt +22 -0
- data/lib/generators/railsui/scaffold/templates/themes/corgie/views/show.html.erb.tt +24 -0
- data/lib/generators/railsui/scaffold/templates/themes/hound/views/_form.html.erb.tt +29 -24
- data/lib/generators/railsui/scaffold/templates/themes/shepherd/views/_form.html.erb.tt +28 -26
- data/lib/railsui/configuration.rb +22 -21
- data/lib/railsui/engine.rb +26 -20
- data/lib/railsui/form_builder.rb +307 -0
- data/lib/railsui/pages.rb +14 -3
- data/lib/railsui/theme_helper.rb +8 -8
- data/lib/railsui/theme_setup.rb +83 -49
- data/lib/railsui/themes.rb +3 -4
- data/lib/railsui/version.rb +1 -1
- data/lib/railsui.rb +9 -6
- data/lib/tasks/install.rake +1 -1
- data/lib/tasks/pages.rake +1 -1
- data/lib/tasks/stimulus.rake +1 -1
- metadata +287 -5
- data/.standard.yml +0 -3
- data/CHANGELOG.md +0 -9
- data/config/colors.yml +0 -50
@@ -0,0 +1,252 @@
|
|
1
|
+
<div class="relative flex flex-col min-h-screen">
|
2
|
+
<%= render "rui/shared/marketing/nav" %>
|
3
|
+
|
4
|
+
<div class="flex items-center justify-center flex-1 px-6">
|
5
|
+
<div class="max-w-5xl mx-auto text-center">
|
6
|
+
<h1 class="mb-6 h1">
|
7
|
+
Intelligent conversation simplified
|
8
|
+
</h1>
|
9
|
+
|
10
|
+
<p class="max-w-3xl mx-auto mb-16 prose prose-xl prose-neutral dark:prose-invert">
|
11
|
+
Experience AI assistance that understands context, processes files, and helps you think through complex
|
12
|
+
problems.
|
13
|
+
</p>
|
14
|
+
|
15
|
+
<!-- Chat Input Integration -->
|
16
|
+
<div class="max-w-2xl mx-auto mb-12">
|
17
|
+
<%= render "rui/shared/chat/form" %>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
|
22
|
+
<%= render "rui/shared/waves" %>
|
23
|
+
</div>
|
24
|
+
|
25
|
+
<!-- Capabilities Section -->
|
26
|
+
<div id="learn-more" class="px-6 py-32 border-t border-neutral-200 dark:border-neutral-700/90">
|
27
|
+
<div class="max-w-6xl mx-auto">
|
28
|
+
<div class="mb-20 text-center">
|
29
|
+
<h2 class="mb-6 h2">
|
30
|
+
Built for how you work
|
31
|
+
</h2>
|
32
|
+
<div class="mx-auto prose prose-lg prose-neutral dark:prose-invert [text-wrap:pretty]">
|
33
|
+
<p>
|
34
|
+
Corgie AI adapts to your workflow with powerful capabilities designed for modern productivity.
|
35
|
+
</p>
|
36
|
+
</div>
|
37
|
+
</div>
|
38
|
+
|
39
|
+
<div class="grid gap-12 md:grid-cols-3">
|
40
|
+
<div class="text-center">
|
41
|
+
<div class="flex items-center justify-center mx-auto mb-6 size-16 bg-neutral-200/60 rounded-2xl">
|
42
|
+
<%= icon "chat-bubble-left-right", class: "size-8 text-neutral-700" %>
|
43
|
+
</div>
|
44
|
+
<h3 class="mb-4 h5">Natural conversation</h3>
|
45
|
+
<div class="prose text-center prose-neutral dark:prose-invert">
|
46
|
+
<p>
|
47
|
+
Engage in flowing, contextual conversations that feel natural and productive.
|
48
|
+
</p>
|
49
|
+
</div>
|
50
|
+
</div>
|
51
|
+
|
52
|
+
<div class="text-center">
|
53
|
+
<div class="flex items-center justify-center mx-auto mb-6 size-16 bg-neutral-200/60 rounded-2xl">
|
54
|
+
<%= icon "document-text", class: "size-8 text-neutral-700" %>
|
55
|
+
</div>
|
56
|
+
<h3 class="mb-4 h5">File processing</h3>
|
57
|
+
<div class="prose text-center prose-neutral dark:prose-invert">
|
58
|
+
<p>
|
59
|
+
Upload and analyze documents, images, and data with intelligent processing.
|
60
|
+
</p>
|
61
|
+
</div>
|
62
|
+
</div>
|
63
|
+
|
64
|
+
<div class="text-center">
|
65
|
+
<div class="flex items-center justify-center mx-auto mb-6 size-16 bg-neutral-200/60 rounded-2xl">
|
66
|
+
<%= icon "light-bulb", class: "size-8 text-neutral-700" %>
|
67
|
+
</div>
|
68
|
+
<h3 class="mb-4 h5">Deep thinking</h3>
|
69
|
+
<div class="prose text-center prose-neutral dark:prose-invert">
|
70
|
+
<p>
|
71
|
+
Complex reasoning and analysis for problems that require careful consideration.
|
72
|
+
</p>
|
73
|
+
</div>
|
74
|
+
</div>
|
75
|
+
</div>
|
76
|
+
</div>
|
77
|
+
</div>
|
78
|
+
|
79
|
+
<!-- Testimonials Section -->
|
80
|
+
<div class="px-6 py-32 bg-neutral-50 dark:bg-neutral-900/50">
|
81
|
+
<div class="max-w-6xl mx-auto">
|
82
|
+
<div class="mb-20 text-center">
|
83
|
+
<h2 class="mb-6 h2">
|
84
|
+
Trusted by professionals
|
85
|
+
</h2>
|
86
|
+
<div class="mx-auto prose prose-lg prose-neutral dark:prose-invert [text-wrap:pretty]">
|
87
|
+
<p>
|
88
|
+
See how teams and individuals are using Corgie AI to transform their daily workflows.
|
89
|
+
</p>
|
90
|
+
</div>
|
91
|
+
</div>
|
92
|
+
|
93
|
+
<div class="grid gap-8 md:grid-cols-2 lg:grid-cols-3">
|
94
|
+
<div class="p-8 bg-white border border-neutral-200 dark:bg-neutral-800 dark:border-neutral-700 rounded-2xl">
|
95
|
+
<div class="mb-6">
|
96
|
+
<div class="flex items-center mb-1">
|
97
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
98
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
99
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
100
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
101
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
102
|
+
</div>
|
103
|
+
<blockquote>
|
104
|
+
“Corgie AI has completely changed how I approach research. It understands context better than any tool
|
105
|
+
I've used before.”
|
106
|
+
</blockquote>
|
107
|
+
</div>
|
108
|
+
<div class="flex items-center gap-3">
|
109
|
+
<div
|
110
|
+
class="flex items-center justify-center rounded-full size-10 bg-gradient-to-br from-blue-500 to-purple-600">
|
111
|
+
<span class="text-sm font-semibold text-white">SM</span>
|
112
|
+
</div>
|
113
|
+
<div>
|
114
|
+
<div class="font-semibold text-neutral-900 dark:text-white">Sarah Martinez</div>
|
115
|
+
<div class="text-sm text-neutral-600 dark:text-neutral-400">Product Manager</div>
|
116
|
+
</div>
|
117
|
+
</div>
|
118
|
+
</div>
|
119
|
+
|
120
|
+
<div class="p-8 bg-white border border-neutral-200 dark:bg-neutral-800 dark:border-neutral-700 rounded-2xl">
|
121
|
+
<div class="mb-6">
|
122
|
+
<div class="flex items-center mb-1">
|
123
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
124
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
125
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
126
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
127
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
128
|
+
</div>
|
129
|
+
|
130
|
+
<blockquote>
|
131
|
+
<p>
|
132
|
+
“The file processing capabilities are incredible. I can upload contracts and get instant analysis
|
133
|
+
with actionable insights.”
|
134
|
+
</p>
|
135
|
+
</blockquote>
|
136
|
+
</div>
|
137
|
+
<div class="flex items-center gap-3">
|
138
|
+
<div
|
139
|
+
class="flex items-center justify-center rounded-full size-10 bg-gradient-to-br from-green-500 to-teal-600">
|
140
|
+
<span class="text-sm font-semibold text-white">DK</span>
|
141
|
+
</div>
|
142
|
+
<div>
|
143
|
+
<div class="font-semibold text-neutral-900 dark:text-white">David Kim</div>
|
144
|
+
<div class="text-sm text-neutral-600 dark:text-neutral-400">Legal Consultant</div>
|
145
|
+
</div>
|
146
|
+
</div>
|
147
|
+
</div>
|
148
|
+
|
149
|
+
<div class="p-8 bg-white border border-neutral-200 dark:bg-neutral-800 dark:border-neutral-700 rounded-2xl">
|
150
|
+
<div class="mb-6">
|
151
|
+
<div class="flex items-center mb-1">
|
152
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
153
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
154
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
155
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
156
|
+
<%= icon "star", class: "size-5 text-yellow-400", variant: :solid %>
|
157
|
+
</div>
|
158
|
+
<blockquote>
|
159
|
+
“Finally, an AI that actually helps me think through complex problems instead of just giving generic
|
160
|
+
answers.”
|
161
|
+
</blockquote>
|
162
|
+
</div>
|
163
|
+
<div class="flex items-center gap-3">
|
164
|
+
<div
|
165
|
+
class="flex items-center justify-center rounded-full size-10 bg-gradient-to-br from-purple-500 to-pink-600">
|
166
|
+
<span class="text-sm font-semibold text-white">AR</span>
|
167
|
+
</div>
|
168
|
+
<div>
|
169
|
+
<div class="font-semibold text-neutral-900 dark:text-white">Alex Rivera</div>
|
170
|
+
<div class="text-sm text-neutral-600 dark:text-neutral-400">UX Designer</div>
|
171
|
+
</div>
|
172
|
+
</div>
|
173
|
+
</div>
|
174
|
+
</div>
|
175
|
+
</div>
|
176
|
+
</div>
|
177
|
+
|
178
|
+
<!-- Simple Blog Preview -->
|
179
|
+
<div class="px-6 py-32 bg-neutral-50 dark:bg-neutral-900">
|
180
|
+
<div class="max-w-6xl mx-auto">
|
181
|
+
<div class="flex flex-wrap gap-6 items-center justify-between mb-16">
|
182
|
+
<div>
|
183
|
+
<h2 class="mb-4 h2">Latest insights</h2>
|
184
|
+
<p class="text-xl text-neutral-600 dark:text-neutral-200">Updates and thoughts from our team</p>
|
185
|
+
</div>
|
186
|
+
<%= link_to rui_blog_path, class: "flex items-center gap-2 btn btn-white" do %>
|
187
|
+
View all
|
188
|
+
<%= icon "arrow-right", class: "size-3" %>
|
189
|
+
<% end %>
|
190
|
+
</div>
|
191
|
+
|
192
|
+
<div class="grid gap-8 md:grid-cols-2 lg:grid-cols-3">
|
193
|
+
<%
|
194
|
+
articles = [
|
195
|
+
{
|
196
|
+
path: rui_blog_show_path,
|
197
|
+
image_name: "railsui/blog1.jpg",
|
198
|
+
category_name: "Technology",
|
199
|
+
category_path: rui_blog_category_path,
|
200
|
+
title: "Understanding Neural Networks: A Beginner's Guide",
|
201
|
+
excerpt: "Dive into the fundamentals of neural networks and learn how they power modern AI systems like Corgie AI.",
|
202
|
+
avatar_path: demo_avatar_url(variant: :women, id: 3),
|
203
|
+
author: "Sarah Wilson",
|
204
|
+
published_at: "May 12, 2025",
|
205
|
+
total_minutes: "7"
|
206
|
+
},
|
207
|
+
{
|
208
|
+
path: rui_blog_show_path,
|
209
|
+
image_name: "railsui/blog2.jpg",
|
210
|
+
category_name: "Tutorials",
|
211
|
+
category_path: rui_blog_category_path,
|
212
|
+
title: "Getting Started with Corgie AI",
|
213
|
+
excerpt: "Learn how to use Corgie AI for your business needs with our step-by-step guide.",
|
214
|
+
avatar_path: demo_avatar_url(variant: :men, id: 49),
|
215
|
+
author: "Alex Chen",
|
216
|
+
published_at: "May 11, 2025",
|
217
|
+
total_minutes: "5"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
path: rui_blog_show_path,
|
221
|
+
image_name: "railsui/blog3.jpg",
|
222
|
+
category_name: "Tutorials",
|
223
|
+
category_path: rui_blog_category_path,
|
224
|
+
title: "Getting Started with Corgie AI",
|
225
|
+
excerpt: "Learn how to use Corgie AI for your business needs with our step-by-step guide.",
|
226
|
+
avatar_path: demo_avatar_url(variant: :men, id: 62),
|
227
|
+
author: "John Slamith",
|
228
|
+
published_at: "May 11, 2025",
|
229
|
+
total_minutes: "5"
|
230
|
+
}
|
231
|
+
]
|
232
|
+
%>
|
233
|
+
|
234
|
+
<% articles.each do |article| %>
|
235
|
+
<%= render "rui/shared/blog/article",
|
236
|
+
path: article[:path],
|
237
|
+
image_name: article[:image_name],
|
238
|
+
category_name: article[:category_name],
|
239
|
+
category_path: article[:category_path],
|
240
|
+
title: article[:title],
|
241
|
+
excerpt: article[:excerpt],
|
242
|
+
avatar_path: article[:avatar_path],
|
243
|
+
author: article[:author],
|
244
|
+
published_at: article[:published_at],
|
245
|
+
total_minutes: article[:total_minutes]
|
246
|
+
%>
|
247
|
+
<% end %>
|
248
|
+
</div>
|
249
|
+
</div>
|
250
|
+
</div>
|
251
|
+
|
252
|
+
<%= render "rui/shared/search" %>
|
@@ -0,0 +1,397 @@
|
|
1
|
+
<div class="bg-white dark:bg-neutral-900">
|
2
|
+
<%= render "rui/shared/waves" %>
|
3
|
+
<!-- Navigation -->
|
4
|
+
<%= render "rui/shared/marketing/nav" %>
|
5
|
+
|
6
|
+
<!-- Hero Section -->
|
7
|
+
<div class="px-6 py-24 relative">
|
8
|
+
<div class="max-w-4xl mx-auto text-center">
|
9
|
+
<h1 class="display-4 md:display-3 mb-3">
|
10
|
+
Simple, transparent pricing
|
11
|
+
</h1>
|
12
|
+
<p class="max-w-2xl mx-auto prose prose-xl prose-neutral dark:prose-invert">Choose the plan that fits your needs.
|
13
|
+
Start free and upgrade as you grow.</p>
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
|
17
|
+
<div class="pt-10 px-6 pb-20 relative z-20">
|
18
|
+
<div class="max-w-6xl mx-auto">
|
19
|
+
<div class="grid gap-8 lg:grid-cols-3">
|
20
|
+
|
21
|
+
<div
|
22
|
+
class="relative flex flex-col gap-6 p-8 bg-white border border-neutral-300 dark:bg-neutral-800 dark:border-neutral-700 rounded-2xl items-between">
|
23
|
+
<div class="flex-1">
|
24
|
+
<div class="mb-8">
|
25
|
+
<h3 class="mb-2 text-2xl font-semibold text-neutral-900 dark:text-white">Free</h3>
|
26
|
+
<p class="text-neutral-600 dark:text-neutral-400">Perfect for getting started</p>
|
27
|
+
</div>
|
28
|
+
|
29
|
+
<div class="mb-8">
|
30
|
+
<div class="flex items-baseline">
|
31
|
+
<span class="text-4xl font-bold text-neutral-900 dark:text-white">$0</span>
|
32
|
+
<span class="ml-1 text-neutral-600 dark:text-neutral-400">/month</span>
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
|
36
|
+
<div class="space-y-4">
|
37
|
+
<div class="flex items-center gap-3">
|
38
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
39
|
+
<span class="text-neutral-700 dark:text-neutral-300">Up to 10 conversations per day</span>
|
40
|
+
</div>
|
41
|
+
<div class="flex items-center gap-3">
|
42
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
43
|
+
<span class="text-neutral-700 dark:text-neutral-300">Basic AI responses</span>
|
44
|
+
</div>
|
45
|
+
<div class="flex items-center gap-3">
|
46
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
47
|
+
<span class="text-neutral-700 dark:text-neutral-300">Text file upload (up to 1MB)</span>
|
48
|
+
</div>
|
49
|
+
<div class="flex items-center gap-3">
|
50
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
51
|
+
<span class="text-neutral-700 dark:text-neutral-300">Community support</span>
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
|
56
|
+
<%= link_to rui_signup_path, class: "w-full btn btn-lg btn-primary btn-rounded" do %>
|
57
|
+
Get started free
|
58
|
+
<%= icon "arrow-up-right", class: "size-3 stroke-current" %>
|
59
|
+
<% end %>
|
60
|
+
</div>
|
61
|
+
|
62
|
+
<div
|
63
|
+
class="relative flex flex-col justify-between gap-6 p-8 bg-white border-2 border-neutral-500 dark:bg-neutral-800 rounded-2xl">
|
64
|
+
|
65
|
+
<div class="absolute transform -translate-x-1/2 -top-4 left-1/2">
|
66
|
+
<span class="px-4 py-1 text-sm font-medium text-white rounded-full bg-neutral-800 dark:bg-indigo-700">
|
67
|
+
Most popular
|
68
|
+
</span>
|
69
|
+
</div>
|
70
|
+
|
71
|
+
<div class="flex-1">
|
72
|
+
<div class="mb-8">
|
73
|
+
<h3 class="mb-2 text-2xl font-semibold text-left text-neutral-900 dark:text-white">Plus</h3>
|
74
|
+
<p class="text-neutral-600 dark:text-neutral-400">For professionals and teams</p>
|
75
|
+
</div>
|
76
|
+
|
77
|
+
<div class="mb-8">
|
78
|
+
<div class="flex items-baseline">
|
79
|
+
<span class="text-4xl font-bold text-neutral-900 dark:text-white">$20</span>
|
80
|
+
<span class="ml-1 text-neutral-600 dark:text-neutral-400">/month</span>
|
81
|
+
</div>
|
82
|
+
</div>
|
83
|
+
|
84
|
+
<div class="space-y-4">
|
85
|
+
<div class="flex items-center gap-3">
|
86
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
87
|
+
<span class="text-neutral-700 dark:text-neutral-300">Unlimited conversations</span>
|
88
|
+
</div>
|
89
|
+
<div class="flex items-center gap-3">
|
90
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
91
|
+
<span class="text-neutral-700 dark:text-neutral-300">Advanced AI responses</span>
|
92
|
+
</div>
|
93
|
+
<div class="flex items-center gap-3">
|
94
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
95
|
+
<span class="text-neutral-700 dark:text-neutral-300">File upload up to 25MB</span>
|
96
|
+
</div>
|
97
|
+
<div class="flex items-center gap-3">
|
98
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
99
|
+
<span class="text-neutral-700 dark:text-neutral-300">Priority support</span>
|
100
|
+
</div>
|
101
|
+
<div class="flex items-center gap-3">
|
102
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
103
|
+
<span class="text-neutral-700 dark:text-neutral-300">Custom conversation history</span>
|
104
|
+
</div>
|
105
|
+
<div class="flex items-center gap-3">
|
106
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
107
|
+
<span class="text-neutral-700 dark:text-neutral-300">Export conversations</span>
|
108
|
+
</div>
|
109
|
+
</div>
|
110
|
+
</div>
|
111
|
+
|
112
|
+
<div>
|
113
|
+
<%= link_to rui_signup_path(plan: :pro), class: "w-full btn btn-lg btn-primary btn-rounded" do %>
|
114
|
+
Start Plus trial
|
115
|
+
<%= icon "arrow-up-right", class: "size-3 stroke-current" %>
|
116
|
+
<% end %>
|
117
|
+
</div>
|
118
|
+
</div>
|
119
|
+
|
120
|
+
<div
|
121
|
+
class="relative flex flex-col justify-between gap-6 p-8 bg-white border border-neutral-200 dark:bg-neutral-800 dark:border-neutral-700 rounded-2xl">
|
122
|
+
<div class="flex-1">
|
123
|
+
<div class="mb-8">
|
124
|
+
<h3 class="mb-2 text-2xl font-semibold text-neutral-900 dark:text-white">Pro</h3>
|
125
|
+
<p class="text-neutral-600 dark:text-neutral-400">For power users and enterprises</p>
|
126
|
+
</div>
|
127
|
+
|
128
|
+
<div class="mb-8">
|
129
|
+
<div class="flex items-baseline">
|
130
|
+
<span class="text-4xl font-bold text-neutral-900 dark:text-white">$50</span>
|
131
|
+
<span class="ml-1 text-neutral-600 dark:text-neutral-400">/month</span>
|
132
|
+
</div>
|
133
|
+
</div>
|
134
|
+
|
135
|
+
<div class="mb-6 space-y-4">
|
136
|
+
<div class="flex gap-3">
|
137
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
138
|
+
<span class="text-neutral-700 dark:text-neutral-300">Everything in Plus</span>
|
139
|
+
</div>
|
140
|
+
<div class="flex gap-3">
|
141
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
142
|
+
<span class="text-neutral-700 dark:text-neutral-300">Premium AI models</span>
|
143
|
+
</div>
|
144
|
+
<div class="flex gap-3">
|
145
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
146
|
+
<span class="text-neutral-700 dark:text-neutral-300">File upload up to 100MB</span>
|
147
|
+
</div>
|
148
|
+
<div class="flex gap-3">
|
149
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
150
|
+
<span class="text-neutral-700 dark:text-neutral-300">Team collaboration</span>
|
151
|
+
</div>
|
152
|
+
<div class="flex gap-3">
|
153
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
154
|
+
<span class="text-neutral-700 dark:text-neutral-300">Advanced analytics</span>
|
155
|
+
</div>
|
156
|
+
<div class="flex gap-3">
|
157
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
158
|
+
<span class="text-neutral-700 dark:text-neutral-300">Dedicated support</span>
|
159
|
+
</div>
|
160
|
+
<div class="flex gap-3">
|
161
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
162
|
+
<span class="text-neutral-700 dark:text-neutral-300">Custom integrations</span>
|
163
|
+
</div>
|
164
|
+
</div>
|
165
|
+
</div>
|
166
|
+
|
167
|
+
<div>
|
168
|
+
<%= link_to "Contact sales","#", class: "w-full btn btn-primary btn-lg btn-rounded" %>
|
169
|
+
</div>
|
170
|
+
</div>
|
171
|
+
</div>
|
172
|
+
</div>
|
173
|
+
</div>
|
174
|
+
|
175
|
+
<div class="px-6 py-20 bg-neutral-50 dark:bg-neutral-900/50">
|
176
|
+
<div class="max-w-6xl mx-auto">
|
177
|
+
<div class="mb-12 text-center">
|
178
|
+
<h2 class="mb-4 h2">Compare features</h2>
|
179
|
+
<p class="text-xl text-neutral-600 dark:text-neutral-400">
|
180
|
+
See what's included in each plan
|
181
|
+
</p>
|
182
|
+
</div>
|
183
|
+
|
184
|
+
<div class="overflow-x-auto">
|
185
|
+
<table class="w-full bg-white border border-neutral-200 dark:bg-neutral-800 dark:border-neutral-700 rounded-xl">
|
186
|
+
<thead>
|
187
|
+
<tr class="border-b border-neutral-200 dark:border-neutral-700">
|
188
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
189
|
+
Features
|
190
|
+
</th>
|
191
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
192
|
+
Free
|
193
|
+
</th>
|
194
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
195
|
+
<div class="flex items-center justify-start gap-2">
|
196
|
+
Plus
|
197
|
+
<span class="px-2 py-1 text-xs text-white rounded-3xl bg-neutral-900">Popular</span>
|
198
|
+
</div>
|
199
|
+
</th>
|
200
|
+
<th class="px-6 py-4 font-semibold text-left text-neutral-900 dark:text-white">
|
201
|
+
Pro
|
202
|
+
</th>
|
203
|
+
</tr>
|
204
|
+
</thead>
|
205
|
+
<tbody class="divide-y divide-neutral-200 dark:divide-neutral-700">
|
206
|
+
<tr>
|
207
|
+
<td class="px-6 py-4 font-medium text-left text-neutral-900 dark:text-white">
|
208
|
+
Daily conversations
|
209
|
+
</td>
|
210
|
+
<td class="px-6 py-4 text-left text-neutral-600 dark:text-neutral-400">
|
211
|
+
10
|
212
|
+
</td>
|
213
|
+
<td class="px-6 py-4 text-left text-neutral-600 dark:text-neutral-400">
|
214
|
+
Unlimited
|
215
|
+
</td>
|
216
|
+
<td class="px-6 py-4 text-left text-neutral-600 dark:text-neutral-400">
|
217
|
+
Unlimited
|
218
|
+
</td>
|
219
|
+
</tr>
|
220
|
+
|
221
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
222
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
223
|
+
AI models
|
224
|
+
</td>
|
225
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
226
|
+
Basic
|
227
|
+
</td>
|
228
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
229
|
+
Advanced
|
230
|
+
</td>
|
231
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
232
|
+
Premium
|
233
|
+
</td>
|
234
|
+
</tr>
|
235
|
+
|
236
|
+
<tr>
|
237
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
238
|
+
File upload limit
|
239
|
+
</td>
|
240
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
241
|
+
1MB
|
242
|
+
</td>
|
243
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
244
|
+
25MB
|
245
|
+
</td>
|
246
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
247
|
+
100MB
|
248
|
+
</td>
|
249
|
+
</tr>
|
250
|
+
|
251
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
252
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
253
|
+
Support
|
254
|
+
</td>
|
255
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
256
|
+
Community
|
257
|
+
</td>
|
258
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
259
|
+
Priority
|
260
|
+
</td>
|
261
|
+
<td class="px-6 py-4 text-neutral-600 dark:text-neutral-400">
|
262
|
+
Dedicated
|
263
|
+
</td>
|
264
|
+
</tr>
|
265
|
+
|
266
|
+
<tr>
|
267
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
268
|
+
Conversation history
|
269
|
+
</td>
|
270
|
+
<td class="px-6 py-4 text-center">
|
271
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
272
|
+
</td>
|
273
|
+
<td class="px-6 py-4 text-center">
|
274
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
275
|
+
</td>
|
276
|
+
<td class="px-6 py-4 text-center">
|
277
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
278
|
+
</td>
|
279
|
+
</tr>
|
280
|
+
|
281
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
282
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
283
|
+
Export conversations
|
284
|
+
</td>
|
285
|
+
<td class="px-6 py-4 text-center">
|
286
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
287
|
+
</td>
|
288
|
+
<td class="px-6 py-4 text-center">
|
289
|
+
|
290
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
291
|
+
</td>
|
292
|
+
<td class="px-6 py-4 text-center">
|
293
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
294
|
+
</td>
|
295
|
+
</tr>
|
296
|
+
|
297
|
+
<tr>
|
298
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
299
|
+
Team collaboration
|
300
|
+
</td>
|
301
|
+
<td class="px-6 py-4 text-center">
|
302
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
303
|
+
</td>
|
304
|
+
<td class="px-6 py-4 text-center">
|
305
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
306
|
+
</td>
|
307
|
+
<td class="px-6 py-4 text-center">
|
308
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
309
|
+
</td>
|
310
|
+
</tr>
|
311
|
+
|
312
|
+
<tr class="bg-neutral-50/50 dark:bg-neutral-800/50">
|
313
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
314
|
+
Advanced analytics
|
315
|
+
</td>
|
316
|
+
<td class="px-6 py-4 text-center">
|
317
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
318
|
+
</td>
|
319
|
+
<td class="px-6 py-4 text-center">
|
320
|
+
<%= icon "x-mark", class: "size-5 text-neutral-400" %>
|
321
|
+
</td>
|
322
|
+
<td class="px-6 py-4 text-center">
|
323
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
324
|
+
</td>
|
325
|
+
</tr>
|
326
|
+
|
327
|
+
<tr>
|
328
|
+
<td class="px-6 py-4 font-medium text-neutral-900 dark:text-white">
|
329
|
+
Custom integrations
|
330
|
+
</td>
|
331
|
+
<td class="px-6 py-4 text-center">
|
332
|
+
<%= icon "x-mark", class: "size-5 text-green-500" %>
|
333
|
+
</td>
|
334
|
+
<td class="px-6 py-4 text-center">
|
335
|
+
<%= icon "x-mark", class: "size-5 text-green-500" %>
|
336
|
+
</td>
|
337
|
+
<td class="px-6 py-4 text-center">
|
338
|
+
<%= icon "check", class: "size-5 text-green-500" %>
|
339
|
+
</td>
|
340
|
+
</tr>
|
341
|
+
</tbody>
|
342
|
+
</table>
|
343
|
+
</div>
|
344
|
+
</div>
|
345
|
+
</div>
|
346
|
+
|
347
|
+
<div class="px-6 py-20">
|
348
|
+
<div class="max-w-4xl mx-auto">
|
349
|
+
<div class="mb-16 text-center">
|
350
|
+
<h2 class="mb-4 h2">Frequently asked questions</h2>
|
351
|
+
<p class="text-xl text-neutral-600 dark:text-neutral-400">
|
352
|
+
Everything you need to know about our pricing
|
353
|
+
</p>
|
354
|
+
</div>
|
355
|
+
|
356
|
+
<div class="space-y-8">
|
357
|
+
<%= render "rui/shared/faq", title: "Can I change my plan at any time?" do %>
|
358
|
+
<p>Yes, you can upgrade or downgrade your plan at any time. Changes take effect immediately, and we'll prorate any billing adjustments.</p>
|
359
|
+
<% end %>
|
360
|
+
|
361
|
+
<%= render "rui/shared/faq", title: "Is there a free trial for paid plans?" do %>
|
362
|
+
<p>Yes, we offer a 14-day free trial for both Plus and Pro plans. No credit card required to start your trial.</p>
|
363
|
+
<% end %>
|
364
|
+
|
365
|
+
<%= render "rui/shared/faq", title: "What payment methods do you accept?" do %>
|
366
|
+
<p>We accept all major credit cards (Visa, MasterCard, American Express) and PayPal. Annual plans can also be paid via bank transfer.</p>
|
367
|
+
<% end %>
|
368
|
+
|
369
|
+
<%= render "rui/shared/faq", title: "Do you offer discounts for annual plans?" do %>
|
370
|
+
<p>Yes, we offer a 20% discount when you pay annually. This applies to both Plus and Pro plans.</p>
|
371
|
+
<% end %>
|
372
|
+
|
373
|
+
<%= render "rui/shared/faq", title: "Is my data secure?" do %>
|
374
|
+
<p>Absolutely. We use enterprise-grade encryption and never store your conversations or files longer than necessary. Pro plans include additional security features and compliance options.</p>
|
375
|
+
<% end %>
|
376
|
+
</div>
|
377
|
+
</div>
|
378
|
+
</div>
|
379
|
+
|
380
|
+
<!-- Call to Action -->
|
381
|
+
<div class="px-6 py-20 bg-neutral-50 dark:bg-neutral-900/50">
|
382
|
+
<div class="max-w-4xl mx-auto text-center">
|
383
|
+
<h2 class="mb-6 h2">
|
384
|
+
Ready to get started?
|
385
|
+
</h2>
|
386
|
+
<p class="mb-8 text-xl text-neutral-600 dark:text-neutral-400">
|
387
|
+
Join thousands of professionals already using Corgie AI to enhance their productivity.
|
388
|
+
</p>
|
389
|
+
<div class="flex flex-col gap-4 sm:flex-row sm:justify-center">
|
390
|
+
<%= link_to "Start free trial", rui_signup_path, class: "btn btn-white" %>
|
391
|
+
<%= link_to "Contact sales", "#", class: "btn btn-white" %>
|
392
|
+
</div>
|
393
|
+
</div>
|
394
|
+
</div>
|
395
|
+
</div>
|
396
|
+
|
397
|
+
<%= render "rui/shared/search" %>
|