rails_app_generator 0.2.2 → 0.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 (87) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +22 -0
  3. data/after_templates/addons/dotenv/_.rb +21 -0
  4. data/after_templates/addons/dotenv/app/controllers/home_controller.rb +7 -0
  5. data/after_templates/addons/dotenv/app/views/home/index.html.erb +10 -0
  6. data/after_templates/addons/dotenv/app/views/layouts/application.html.erb +19 -0
  7. data/after_templates/addons/lograge/_.rb +22 -0
  8. data/after_templates/addons/lograge/app/controllers/home_controller.rb +9 -0
  9. data/after_templates/addons/lograge/app/views/home/index.html.erb +11 -0
  10. data/after_templates/addons/lograge/app/views/layouts/application.html.erb +21 -0
  11. data/after_templates/addons/public_suffix/_.rb +23 -0
  12. data/after_templates/addons/public_suffix/app/controllers/home_controller.rb +7 -0
  13. data/after_templates/addons/public_suffix/app/views/home/index.html.erb +29 -0
  14. data/after_templates/addons/public_suffix/app/views/layouts/application.html.erb +23 -0
  15. data/after_templates/addons/rubocop/_.rb +29 -0
  16. data/after_templates/addons/rubocop/app/assets/images/cop-output.png +0 -0
  17. data/after_templates/addons/rubocop/app/controllers/home_controller.rb +21 -0
  18. data/after_templates/addons/rubocop/app/views/home/index.html.erb +46 -0
  19. data/after_templates/addons/rubocop/app/views/layouts/application.html.erb +19 -0
  20. data/after_templates/application/printspeak/_.rb +21 -27
  21. data/after_templates/application/printspeak/app/assets/stylesheets/application.bootstrap.scss +1 -1
  22. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/_global.scss +0 -0
  23. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/_variables.scss +0 -0
  24. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/components/_buttons.scss +0 -0
  25. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/components/_navbar.scss +0 -0
  26. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/sections/_contact.scss +0 -0
  27. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/sections/_footer.scss +0 -0
  28. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/sections/_masthead.scss +0 -0
  29. data/after_templates/application/printspeak/app/assets/stylesheets/page/sections/_pagehead.scss +52 -0
  30. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/sections/_portfolio.scss +0 -0
  31. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/sections/_team.scss +0 -0
  32. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/sections/_timeline.scss +0 -0
  33. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/styles.scss +1 -0
  34. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/variables/_colors.scss +0 -0
  35. data/after_templates/application/printspeak/app/assets/stylesheets/{home → page}/variables/_typography.scss +0 -0
  36. data/after_templates/application/printspeak/app/controllers/application_controller.rb +41 -0
  37. data/after_templates/application/printspeak/app/controllers/home_controller.rb +3 -3
  38. data/after_templates/application/printspeak/app/controllers/page_controller.rb +13 -0
  39. data/after_templates/application/printspeak/app/views/home/_body_end.html.erb +45 -0
  40. data/after_templates/application/printspeak/app/views/home/_modal.erb +23 -0
  41. data/after_templates/application/printspeak/app/views/home/_navbar.html.erb +14 -0
  42. data/after_templates/application/printspeak/app/views/home/index.html.erb +234 -283
  43. data/after_templates/application/printspeak/app/views/layouts/_body_end.html.erb +0 -0
  44. data/after_templates/application/printspeak/app/views/layouts/_footer.html.erb +2 -2
  45. data/after_templates/application/printspeak/app/views/layouts/_head.html.erb +0 -0
  46. data/after_templates/application/printspeak/app/views/layouts/application.html.erb +3 -3
  47. data/after_templates/application/printspeak/app/views/page/_navbar.html.erb +9 -0
  48. data/after_templates/application/printspeak/app/views/page/benefits.html.erb +28 -0
  49. data/after_templates/application/printspeak/app/views/page/privacy.html.erb +12 -0
  50. data/after_templates/application/printspeak/app/views/page/terms.html.erb +12 -0
  51. data/docs/last_run/app_generator_class.json +32 -0
  52. data/docs/last_run/app_generator_data.json +7 -4
  53. data/docs/last_run/rails_options_class.json +32 -0
  54. data/docs/last_run/rails_options_data.json +8 -4
  55. data/lib/rails_app_generator/addons/continuous_integration.rb +1 -0
  56. data/lib/rails_app_generator/addons/devise.rb +1 -0
  57. data/lib/rails_app_generator/addons/docker.rb +1 -0
  58. data/lib/rails_app_generator/addons/docker_compose.rb +1 -0
  59. data/lib/rails_app_generator/addons/dotenv.rb +2 -0
  60. data/lib/rails_app_generator/addons/factory_bot.rb +1 -0
  61. data/lib/rails_app_generator/addons/foreman.rb +1 -0
  62. data/lib/rails_app_generator/addons/generators.rb +1 -0
  63. data/lib/rails_app_generator/addons/lograge.rb +3 -1
  64. data/lib/rails_app_generator/addons/public_suffix.rb +33 -0
  65. data/lib/rails_app_generator/addons/rubocop.rb +4 -0
  66. data/lib/rails_app_generator/app_generator.rb +10 -2
  67. data/lib/rails_app_generator/rag_initializer.rb +15 -15
  68. data/lib/rails_app_generator/version.rb +1 -1
  69. data/package-lock.json +2 -2
  70. data/package.json +1 -1
  71. data/profiles/{default/printspeak.json → addons/dotenv.json} +4 -4
  72. data/profiles/addons/lograge.json +12 -0
  73. data/profiles/addons/public_suffix.json +12 -0
  74. data/profiles/addons/rubocop.json +12 -0
  75. data/profiles/application/printspeak.json +6 -4
  76. data/templates/addons/lograge/config/initializers/lograge.rb +9 -1
  77. data/templates/addons/rubocop/.rubocop.yml.erb +5 -2
  78. data/templates/thor_task/addon/addon.tt +1 -1
  79. data/templates/thor_task/profile/after_template.rb +17 -8
  80. metadata +49 -23
  81. data/after_templates/application/printspeak/app/views/layouts/_alerts.html.erb +0 -2
  82. data/after_templates/application/printspeak/app/views/page/_footer.html.erb +0 -184
  83. data/after_templates/application/printspeak/app/views/page/architecture.html.erb +0 -33
  84. data/after_templates/application/printspeak/app/views/page/blog.html.erb +0 -44
  85. data/after_templates/application/printspeak/app/views/page/page_controller.rb +0 -27
  86. data/after_templates/application/printspeak/app/views/page/readme.html.erb +0 -49
  87. data/profiles/printspeak.json +0 -12
@@ -1,3 +1,6 @@
1
+ require:
2
+ - rubocop-rails
3
+
1
4
  AllCops:
2
5
  NewCops: enable
3
6
  Exclude:
@@ -11,10 +14,10 @@ Naming/AccessorMethodName:
11
14
 
12
15
  Metrics/MethodLength:
13
16
  CountAsOne: ['array', 'heredoc']
14
- IgnoredMethods: ['describe', 'context']
17
+ AllowedMethods: ['describe', 'context']
15
18
 
16
19
  Metrics/BlockLength:
17
- IgnoredMethods: ['describe', 'context']
20
+ AllowedMethods: ['describe', 'context']
18
21
  Exclude:
19
22
  - config/environments/*.rb
20
23
  - '**/*.rake'
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # lib/rails_app_generator/rag_initializer.rb
4
- # config.rag.add_option :add_<%= data.name_snake %> , type: :boolean, default: false
4
+ # rag.add_option :add_<%= data.name_snake %> , type: :boolean, default: false
5
5
 
6
6
  module RailsAppGenerator
7
7
  # Custom add-ons for RailsAppGenerator
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # require 'pry'
4
-
5
3
  # <%= data.description %>
6
4
  #
7
5
  # exe/rag addons/<%= data.name_snake %>
@@ -10,17 +8,17 @@ self.local_template_path = File.dirname(__FILE__)
10
8
 
11
9
  gac 'base rails 7 image created'
12
10
 
11
+ bundle_install
12
+
13
13
  add_controller('home', 'index')
14
+
14
15
  route("root 'home#index'")
15
16
 
16
17
  force_copy
17
18
 
18
- copy_file 'app/controllers/home_controller.rb' , 'app/controllers/home_controller.rb'
19
- copy_file 'app/views/home/index.html.erb' , 'app/views/home/index.html.erb'
20
-
21
- copy_file 'app/views/layouts/_alerts.html.erb' , 'app/views/layouts/_alerts.html.erb'
22
- copy_file 'app/views/layouts/_navbar.html.erb' , 'app/views/layouts/_navbar.html.erb'
23
- copy_file 'app/views/layouts/_footer.html.erb' , 'app/views/layouts/_footer.html.erb'
19
+ directory "app/controllers"
20
+ directory "app/views/home"
21
+ directory "app/views/layouts"
24
22
  template 'app/views/layouts/application.html.erb' , 'app/views/layouts/application.html.erb'
25
23
 
26
24
  template 'db/seeds.rb' , 'db/seeds.rb'
@@ -38,12 +36,16 @@ def setup_db
38
36
  end
39
37
 
40
38
  # Other template command examples
39
+ # bundle_install
41
40
  # css_install('tailwind')
42
41
  # rails_command('db:migrate')
42
+ # rails_command('db:migrate')
43
43
  # bundle_add('hotwire-rails')
44
44
  # rails_command('hotwire:install')
45
45
  # run('bin/importmap pin sortablejs')
46
46
  # run('npm install daisyui')
47
+ # rubocop
48
+ #
47
49
  # directory 'app/assets/images'
48
50
  # create_file 'app/assets/stylesheets/custom-bootstrap-import.scss' , read_template('custom-bootstrap-import.scss')
49
51
  # append_to_file 'app/assets/config/manifest.js' , read_template('manifest.js')
@@ -51,3 +53,10 @@ end
51
53
  # before: %( <%%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %>)
52
54
  # gsub_file 'app/views/layouts/application.html.erb', %(container mx-auto mt-28 px-5 flex), 'container mx-auto px-5'
53
55
  # template 'home.css', 'app/assets/stylesheets/home.css'
56
+ #
57
+ # add_controller('page', 'benefits', 'faq', 'terms', 'privacy', '--skip-routes')
58
+ # route(<<-'RUBY')
59
+ # PageController.action_methods.each do |action|
60
+ # get "/#{action}", to: "page##{action}", as: "page_#{action}"
61
+ # end
62
+ # RUBY
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_app_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-09 00:00:00.000000000 Z
11
+ date: 2022-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootsnap
@@ -202,6 +202,10 @@ files:
202
202
  - after_templates/addons/chartkick/app/views/people/_person.html.erb
203
203
  - after_templates/addons/chartkick/config/initializers/chartkick.rb
204
204
  - after_templates/addons/chartkick/db/seeds.rb
205
+ - after_templates/addons/dotenv/_.rb
206
+ - after_templates/addons/dotenv/app/controllers/home_controller.rb
207
+ - after_templates/addons/dotenv/app/views/home/index.html.erb
208
+ - after_templates/addons/dotenv/app/views/layouts/application.html.erb
205
209
  - after_templates/addons/faker/_.rb
206
210
  - after_templates/addons/faker/app/controllers/home_controller.rb
207
211
  - after_templates/addons/faker/app/views/home/index.html.erb
@@ -232,6 +236,10 @@ files:
232
236
  - after_templates/addons/httparty/app/views/layouts/_footer.html.erb
233
237
  - after_templates/addons/httparty/app/views/layouts/_navbar.html.erb
234
238
  - after_templates/addons/httparty/app/views/layouts/application.html.erb
239
+ - after_templates/addons/lograge/_.rb
240
+ - after_templates/addons/lograge/app/controllers/home_controller.rb
241
+ - after_templates/addons/lograge/app/views/home/index.html.erb
242
+ - after_templates/addons/lograge/app/views/layouts/application.html.erb
235
243
  - after_templates/addons/mini_magick/_.rb
236
244
  - after_templates/addons/mini_magick/app/assets/images/cat1.jpg
237
245
  - after_templates/addons/mini_magick/app/assets/images/cat2.jpg
@@ -242,8 +250,17 @@ files:
242
250
  - after_templates/addons/mini_magick/app/views/layouts/_footer.html.erb
243
251
  - after_templates/addons/mini_magick/app/views/layouts/_navbar.html.erb
244
252
  - after_templates/addons/mini_magick/app/views/layouts/application.html.erb
253
+ - after_templates/addons/public_suffix/_.rb
254
+ - after_templates/addons/public_suffix/app/controllers/home_controller.rb
255
+ - after_templates/addons/public_suffix/app/views/home/index.html.erb
256
+ - after_templates/addons/public_suffix/app/views/layouts/application.html.erb
245
257
  - after_templates/addons/rails_html_sanitizer/_.rb
246
258
  - after_templates/addons/rails_html_sanitizer/home/index.html.erb
259
+ - after_templates/addons/rubocop/_.rb
260
+ - after_templates/addons/rubocop/app/assets/images/cop-output.png
261
+ - after_templates/addons/rubocop/app/controllers/home_controller.rb
262
+ - after_templates/addons/rubocop/app/views/home/index.html.erb
263
+ - after_templates/addons/rubocop/app/views/layouts/application.html.erb
247
264
  - after_templates/addons/twilio_ruby/_.rb
248
265
  - after_templates/addons/twilio_ruby/app/controllers/home_controller.rb
249
266
  - after_templates/addons/twilio_ruby/app/views/home/index.html.erb
@@ -278,31 +295,37 @@ files:
278
295
  - after_templates/application/printspeak/app/assets/images/team/2.jpg
279
296
  - after_templates/application/printspeak/app/assets/images/team/3.jpg
280
297
  - after_templates/application/printspeak/app/assets/stylesheets/application.bootstrap.scss
281
- - after_templates/application/printspeak/app/assets/stylesheets/home/_global.scss
282
- - after_templates/application/printspeak/app/assets/stylesheets/home/_variables.scss
283
- - after_templates/application/printspeak/app/assets/stylesheets/home/components/_buttons.scss
284
- - after_templates/application/printspeak/app/assets/stylesheets/home/components/_navbar.scss
285
- - after_templates/application/printspeak/app/assets/stylesheets/home/sections/_contact.scss
286
- - after_templates/application/printspeak/app/assets/stylesheets/home/sections/_footer.scss
287
- - after_templates/application/printspeak/app/assets/stylesheets/home/sections/_masthead.scss
288
- - after_templates/application/printspeak/app/assets/stylesheets/home/sections/_portfolio.scss
289
- - after_templates/application/printspeak/app/assets/stylesheets/home/sections/_team.scss
290
- - after_templates/application/printspeak/app/assets/stylesheets/home/sections/_timeline.scss
291
- - after_templates/application/printspeak/app/assets/stylesheets/home/styles.scss
292
- - after_templates/application/printspeak/app/assets/stylesheets/home/variables/_colors.scss
293
- - after_templates/application/printspeak/app/assets/stylesheets/home/variables/_typography.scss
298
+ - after_templates/application/printspeak/app/assets/stylesheets/page/_global.scss
299
+ - after_templates/application/printspeak/app/assets/stylesheets/page/_variables.scss
300
+ - after_templates/application/printspeak/app/assets/stylesheets/page/components/_buttons.scss
301
+ - after_templates/application/printspeak/app/assets/stylesheets/page/components/_navbar.scss
302
+ - after_templates/application/printspeak/app/assets/stylesheets/page/sections/_contact.scss
303
+ - after_templates/application/printspeak/app/assets/stylesheets/page/sections/_footer.scss
304
+ - after_templates/application/printspeak/app/assets/stylesheets/page/sections/_masthead.scss
305
+ - after_templates/application/printspeak/app/assets/stylesheets/page/sections/_pagehead.scss
306
+ - after_templates/application/printspeak/app/assets/stylesheets/page/sections/_portfolio.scss
307
+ - after_templates/application/printspeak/app/assets/stylesheets/page/sections/_team.scss
308
+ - after_templates/application/printspeak/app/assets/stylesheets/page/sections/_timeline.scss
309
+ - after_templates/application/printspeak/app/assets/stylesheets/page/styles.scss
310
+ - after_templates/application/printspeak/app/assets/stylesheets/page/variables/_colors.scss
311
+ - after_templates/application/printspeak/app/assets/stylesheets/page/variables/_typography.scss
312
+ - after_templates/application/printspeak/app/controllers/application_controller.rb
294
313
  - after_templates/application/printspeak/app/controllers/home_controller.rb
314
+ - after_templates/application/printspeak/app/controllers/page_controller.rb
315
+ - after_templates/application/printspeak/app/views/home/_body_end.html.erb
316
+ - after_templates/application/printspeak/app/views/home/_modal.erb
317
+ - after_templates/application/printspeak/app/views/home/_navbar.html.erb
295
318
  - after_templates/application/printspeak/app/views/home/index.html.erb
296
- - after_templates/application/printspeak/app/views/layouts/_alerts.html.erb
319
+ - after_templates/application/printspeak/app/views/layouts/_body_end.html.erb
297
320
  - after_templates/application/printspeak/app/views/layouts/_footer.html.erb
321
+ - after_templates/application/printspeak/app/views/layouts/_head.html.erb
298
322
  - after_templates/application/printspeak/app/views/layouts/_navbar.html.erb
299
323
  - after_templates/application/printspeak/app/views/layouts/application.html.erb
300
- - after_templates/application/printspeak/app/views/page/_footer.html.erb
301
- - after_templates/application/printspeak/app/views/page/architecture.html.erb
302
- - after_templates/application/printspeak/app/views/page/blog.html.erb
324
+ - after_templates/application/printspeak/app/views/page/_navbar.html.erb
325
+ - after_templates/application/printspeak/app/views/page/benefits.html.erb
303
326
  - after_templates/application/printspeak/app/views/page/faq.html.erb
304
- - after_templates/application/printspeak/app/views/page/page_controller.rb
305
- - after_templates/application/printspeak/app/views/page/readme.html.erb
327
+ - after_templates/application/printspeak/app/views/page/privacy.html.erb
328
+ - after_templates/application/printspeak/app/views/page/terms.html.erb
306
329
  - after_templates/application/printspeak/db/seeds.rb
307
330
  - after_templates/printspeak_bak/_.rb
308
331
  - after_templates/printspeak_bak/application_controller.rb
@@ -463,6 +486,7 @@ files:
463
486
  - lib/rails_app_generator/addons/irbrc.rb
464
487
  - lib/rails_app_generator/addons/lograge.rb
465
488
  - lib/rails_app_generator/addons/mini_magick.rb
489
+ - lib/rails_app_generator/addons/public_suffix.rb
466
490
  - lib/rails_app_generator/addons/pundit.rb
467
491
  - lib/rails_app_generator/addons/rails_html_sanitizer.rb
468
492
  - lib/rails_app_generator/addons/rspec.rb
@@ -512,16 +536,18 @@ files:
512
536
  - profiles/addons/acts_as_list.json
513
537
  - profiles/addons/browser.json
514
538
  - profiles/addons/chartkick.json
539
+ - profiles/addons/dotenv.json
515
540
  - profiles/addons/faker.json
516
541
  - profiles/addons/hexapdf.json
517
542
  - profiles/addons/honeybadger.json
518
543
  - profiles/addons/httparty.json
544
+ - profiles/addons/lograge.json
519
545
  - profiles/addons/mini_magick.json
546
+ - profiles/addons/public_suffix.json
520
547
  - profiles/addons/rails-html-sanitizer.json
548
+ - profiles/addons/rubocop.json
521
549
  - profiles/addons/twilio_ruby.json
522
550
  - profiles/application/printspeak.json
523
- - profiles/default/printspeak.json
524
- - profiles/printspeak.json
525
551
  - profiles/rag/bootstrap.json
526
552
  - profiles/rag/devise.json
527
553
  - profiles/rag/import-map.json
@@ -1,2 +0,0 @@
1
- <% flash.each do |type, msg| %><div class="<%= type %>"><%= msg %></div><% end %>
2
- <% if flash.any? %><hr /><% end %>
@@ -1,184 +0,0 @@
1
- <!-- File: views/layouts/_application_footer.html.erb -->
2
-
3
-
4
- <!-- Section 1 -->
5
- <section class="w-full bg-gray-900">
6
-
7
- <div class="px-6 mx-auto max-w-7xl xl:px-12">
8
- <div class="box-border flex flex-wrap pt-20 pb-0 text-base leading-tight text-gray-500 md:pb-12">
9
- <div class="flex-initial w-1/2 px-2 pb-12 leading-tight md:w-1/4">
10
- <div class="box-border text-base text-gray-500">
11
- <div class="flex items-center justify-center w-10 h-10 mr-3 rounded-lg mb-7 bg-gradient-to-br from-purple-500 via-indigo-600 to-blue-500 rounded-xxl">
12
- <svg class="w-5 h-5 text-white fill-current" viewBox="0 0 39 15" xmlns="http://www.w3.org/2000/svg">
13
- <path d="M11.252 1.152C4.184 2.526.454 6.918.061 14.329c1.963-4.049 4.798-5.975 8.503-5.778 2.115.112 3.84 1.295 5.75 2.603 3.11 2.133 6.712 4.601 13.281 3.324 7.068-1.374 10.798-5.766 11.191-13.177-1.963 4.049-4.798 5.975-8.503 5.779-2.115-.113-3.84-1.296-5.75-2.604-3.11-2.133-6.712-4.601-13.281-3.324z" fill-rule="evenodd"></path>
14
- </svg>
15
- </div>
16
- <ul class="p-0 m-0 text-base leading-tight list-none">
17
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
18
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Home</a>
19
- </li>
20
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
21
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Downloads</a>
22
- </li>
23
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
24
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Web App</a>
25
- </li>
26
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
27
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Changelog</a>
28
- </li>
29
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
30
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Integrations</a>
31
- </li>
32
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
33
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Templates</a>
34
- </li>
35
- </ul>
36
- </div>
37
- </div>
38
- <div width="6,3" class="flex-initial w-1/2 px-2 pb-12 leading-tight md:w-1/4">
39
- <div class="box-border text-base text-gray-500">
40
- <h2 class="mb-8 font-sans text-xl font-bold tracking-wide text-gray-100 md:text-2xl">
41
- Product
42
- </h2>
43
- <ul class="p-0 m-0 text-base leading-tight list-none">
44
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
45
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Drag'n Drop Builder</a>
46
- </li>
47
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
48
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Developer Inspector</a>
49
- </li>
50
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
51
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Theme Configuration</a>
52
- </li>
53
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
54
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Template Customization</a>
55
- </li>
56
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
57
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Developer API</a>
58
- </li>
59
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
60
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">System Import</a>
61
- </li>
62
- </ul>
63
- </div>
64
- </div>
65
- <div width="6,3" class="flex-initial w-1/2 px-2 pb-12 leading-tight md:w-1/4">
66
- <div class="box-border text-base text-gray-500">
67
- <h2 class="mb-8 font-sans text-xl font-bold tracking-wide text-gray-100 md:text-2xl">
68
- Company
69
- </h2>
70
- <ul class="p-0 m-0 text-base leading-tight list-none">
71
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
72
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Contact us</a>
73
- </li>
74
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
75
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Blog</a>
76
- </li>
77
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
78
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Culture</a>
79
- </li>
80
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
81
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Jobs</a>
82
- </li>
83
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
84
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Technology</a>
85
- </li>
86
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
87
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Security</a>
88
- </li>
89
- </ul>
90
- </div>
91
- </div>
92
- <div class="flex-initial w-1/2 px-2 pb-12 leading-tight md:w-1/4">
93
- <div class="box-border text-base text-gray-500">
94
- <h2 class="mb-8 font-sans text-xl font-bold tracking-wide text-gray-100 md:text-2xl">
95
- Support
96
- </h2>
97
- <ul class="p-0 m-0 text-base leading-tight list-none">
98
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
99
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Getting started</a>
100
- </li>
101
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
102
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Suggest a feature</a>
103
- </li>
104
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
105
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Help center</a>
106
- </li>
107
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
108
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Server status</a>
109
- </li>
110
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
111
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Report a bug</a>
112
- </li>
113
- <li class="box-border py-2 text-sm font-normal text-left text-gray-500 md:text-base md:mb-1">
114
- <a href="#_" class="text-base leading-tight no-underline bg-transparent cursor-pointer hover:text-gray-400">Press Kit</a>
115
- </li>
116
- </ul>
117
- </div>
118
- </div>
119
- </div>
120
-
121
- <div class="flex flex-col items-center justify-between w-full py-12 text-xs leading-none text-gray-500 border-t border-gray-800 lg:flex-row">
122
- <div class="flex self-start flex-grow-0 flex-shrink-0 w-full leading-none lg:w-auto">
123
- <span class="inline-flex justify-center w-full mt-4 space-x-5 sm:ml-auto sm:mt-0">
124
- <a href="#" class="text-gray-400 hover:text-gray-200">
125
- <span class="sr-only">Facebook</span>
126
- <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
127
- <path fill-rule="evenodd" d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z" clip-rule="evenodd"></path>
128
- </svg>
129
- </a>
130
-
131
- <a href="#" class="text-gray-400 hover:text-gray-200">
132
- <span class="sr-only">Instagram</span>
133
- <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
134
- <path fill-rule="evenodd" d="M12.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.45 2.525c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z" clip-rule="evenodd"></path>
135
- </svg>
136
- </a>
137
-
138
- <a href="#" class="text-gray-400 hover:text-gray-200">
139
- <span class="sr-only">Twitter</span>
140
- <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
141
- <path d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84"></path>
142
- </svg>
143
- </a>
144
-
145
- <a href="#" class="text-gray-400 hover:text-gray-200">
146
- <span class="sr-only">GitHub</span>
147
- <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
148
- <path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path>
149
- </svg>
150
- </a>
151
-
152
- <a href="#" class="text-gray-400 hover:text-gray-200">
153
- <span class="sr-only">Dribbble</span>
154
- <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
155
- <path fill-rule="evenodd" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10c5.51 0 10-4.48 10-10S17.51 2 12 2zm6.605 4.61a8.502 8.502 0 011.93 5.314c-.281-.054-3.101-.629-5.943-.271-.065-.141-.12-.293-.184-.445a25.416 25.416 0 00-.564-1.236c3.145-1.28 4.577-3.124 4.761-3.362zM12 3.475c2.17 0 4.154.813 5.662 2.148-.152.216-1.443 1.941-4.48 3.08-1.399-2.57-2.95-4.675-3.189-5A8.687 8.687 0 0112 3.475zm-3.633.803a53.896 53.896 0 013.167 4.935c-3.992 1.063-7.517 1.04-7.896 1.04a8.581 8.581 0 014.729-5.975zM3.453 12.01v-.26c.37.01 4.512.065 8.775-1.215.25.477.477.965.694 1.453-.109.033-.228.065-.336.098-4.404 1.42-6.747 5.303-6.942 5.629a8.522 8.522 0 01-2.19-5.705zM12 20.547a8.482 8.482 0 01-5.239-1.8c.152-.315 1.888-3.656 6.703-5.337.022-.01.033-.01.054-.022a35.318 35.318 0 011.823 6.475 8.4 8.4 0 01-3.341.684zm4.761-1.465c-.086-.52-.542-3.015-1.659-6.084 2.679-.423 5.022.271 5.314.369a8.468 8.468 0 01-3.655 5.715z" clip-rule="evenodd"></path>
156
- </svg>
157
- </a>
158
- </span>
159
- </div>
160
- <ul class="flex my-6 text-sm text-gray-500 list-none lg:flex-grow-0 lg:flex-shrink-0 lg:my-0">
161
- <li class="box-border block font-semibold text-left">
162
- <%=link_to 'Terms of service', page_terms_path, class: 'pr-5 mr-5 text-gray-500 no-underline bg-transparent border-r border-gray-700 cursor-pointer' %>
163
- </li>
164
- <li class="box-border block font-semibold text-left">
165
- <%=link_to 'Privacy policy', page_privacy_path, class: 'pr-5 mr-5 text-gray-500 no-underline bg-transparent border-r border-gray-700 cursor-pointer' %>
166
- </li>
167
- <li class="box-border block font-semibold text-left">
168
- <%=link_to 'FAQ', page_faq_path, class: 'pr-5 mr-5 text-gray-500 no-underline bg-transparent border-r border-gray-700 cursor-pointer' %>
169
- </li>
170
- <li class="box-border block font-semibold text-left">
171
- <a href="#_" class="text-gray-500 no-underline bg-transparent cursor-pointer">Sitemap</a>
172
- </li>
173
- </ul>
174
- <p class="block m-0 text-base font-semibold text-gray-500">
175
- Copyright © 2022 Printspeak
176
- </p>
177
- </div>
178
- </div>
179
-
180
- </section>
181
-
182
- <!-- Optional JavaScript -->
183
-
184
- <%= yield(:foot) %>
@@ -1,33 +0,0 @@
1
- <% content_for :head do %>
2
- <% end %>
3
-
4
- <h1 class="mb-12 text-xl font-bold text-left md:text-3xl md:text-center">Architecture</h1>
5
-
6
- <!-- Section 1 -->
7
- <section class="flex items-center justify-center py-10 text-white bg-white sm:py-16 md:py-24 lg:py-32">
8
- <div class="relative max-w-3xl px-10 text-center text-white auto lg:px-0">
9
- <div class="flex flex-col w-full md:flex-row">
10
-
11
- <!-- Top Text -->
12
- <div class="flex justify-between">
13
- <h1 class="relative flex flex-col text-6xl font-extrabold text-left text-black">
14
- Crafting
15
- <span>Powerful</span>
16
- <span>Experiences</span>
17
- </h1>
18
- </div>
19
- <!-- Right Image -->
20
- <div class="relative top-0 right-0 h-64 mt-12 md:-mt-16 md:absolute md:h-96">
21
- <img src="https://cdn.devdojo.com/images/december2020/designs3d.png" class="object-cover mt-3 mr-5 h-80 lg:h-96">
22
- </div>
23
- </div>
24
-
25
- <!-- Separator -->
26
- <div class="my-16 border-b border-gray-300 lg:my-24"></div>
27
-
28
- <!-- Bottom Text -->
29
- <h2 class="text-left text-gray-500 xl:text-xl">
30
- Building beautiful designs for your next project. We've unlocked the secret to converting visitors into customers. Download our re-usable and extandable components today.
31
- </h2>
32
- </div>
33
- </section>
@@ -1,44 +0,0 @@
1
- <h1 class="mb-12 text-xl font-bold text-left md:text-3xl md:text-center">Blog</h1>
2
-
3
-
4
- <!-- Section 1 -->
5
- <section class="w-full px-8 py-16 bg-white xl:px-0">
6
- <div class="max-w-4xl mx-auto tracking-tighter">
7
- <h2 class="text-2xl font-bold leading-none text-black sm:text-3xl md:text-4xl">
8
- We have built some of the highest converting templates and components to help you build your Software as a Service quicker and easier than ever before.
9
- </h2>
10
- </div>
11
- </section>
12
-
13
- <section class="bg-white">
14
- <div class="max-w-6xl py-12 mx-auto">
15
- <div class="grid gap-8 md:grid-cols-2 lg:gap-12 ">
16
- <a href="#_" class="flex flex-col p-6 space-y-6 transition-all duration-500 bg-white border border-indigo-100 rounded-lg shadow hover:shadow-xl lg:p-8 lg:flex-row lg:space-y-0 lg:space-x-6">
17
- <div class="flex items-center justify-center w-16 h-16 border border-indigo-200 shadow-inner bg-gradient-to-br from-indigo-50 to-indigo-200 rounded-xl lg:h-20 lg:w-20">
18
- <svg class="w-10 h-10 text-indigo-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6V4m0 2a2 2 0 100 4m0-4a2 2 0 110 4m-6 8a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4m6 6v10m6-2a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4"></path></svg>
19
- </div>
20
- <div class="flex-1">
21
- <h5 class="mt-1 mb-2 text-xl font-bold lg:text-2xl">Fully Customizable</h5>
22
- <p class="mb-6 text-lg text-gray-600">Each component is fully customizable</p>
23
- <span class="flex items-center text-lg font-bold text-indigo-600">
24
- Customzation Details
25
- <svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path></svg>
26
- </span>
27
- </div>
28
- </a>
29
- <a href="#_" class="flex flex-col p-6 space-y-6 transition-all duration-500 bg-white border border-indigo-100 rounded-lg shadow hover:shadow-xl lg:p-8 lg:flex-row lg:space-y-0 lg:space-x-6">
30
- <div class="flex items-center justify-center w-16 h-16 border border-indigo-200 shadow-inner bg-gradient-to-br from-indigo-50 to-indigo-200 rounded-xl lg:h-20 lg:w-20">
31
- <svg class="w-10 h-10 text-indigo-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 4a2 2 0 114 0v1a1 1 0 001 1h3a1 1 0 011 1v3a1 1 0 01-1 1h-1a2 2 0 100 4h1a1 1 0 011 1v3a1 1 0 01-1 1h-3a1 1 0 01-1-1v-1a2 2 0 10-4 0v1a1 1 0 01-1 1H7a1 1 0 01-1-1v-3a1 1 0 00-1-1H4a2 2 0 110-4h1a1 1 0 001-1V7a1 1 0 011-1h3a1 1 0 001-1V4z"></path></svg>
32
- </div>
33
- <div class="flex-1">
34
- <h5 class="mt-1 mb-2 text-xl font-bold lg:text-2xl">Integrates Easily</h5>
35
- <p class="mb-6 text-lg text-gray-600">Integrate each component with your stack</p>
36
- <span class="flex items-center text-lg font-bold text-indigo-600">
37
- Integration Details
38
- <svg class="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path></svg>
39
- </span>
40
- </div>
41
- </a>
42
- </div>
43
- </div>
44
- </section>
@@ -1,27 +0,0 @@
1
- class PageController < ApplicationController
2
- # before_action { footer_partial('page/footer') }
3
-
4
- def home
5
- end
6
-
7
- def blog
8
- end
9
-
10
- def readme
11
- end
12
-
13
- def about
14
- end
15
-
16
- def contact
17
- end
18
-
19
- def faq
20
- end
21
-
22
- def terms
23
- end
24
-
25
- def privacy
26
- end
27
- end
@@ -1,49 +0,0 @@
1
- <h1 class="mb-12 text-xl font-bold text-left md:text-3xl md:text-center">Readme</h1>
2
-
3
- <!-- Section 1 -->
4
- <section class="w-full py-24 mx-auto bg-white">
5
- <div class="max-w-5xl px-12 mx-auto xl:px-12">
6
- <h1 class="mb-12 text-xl font-bold text-left md:text-3xl md:text-center">Frequently Asked Questions</h1>
7
- <div class="flex items-start justify-start mb-12">
8
- <svg fill="none" viewBox="0 0 24 24" stroke="currentColor" class="flex-none w-6 h-6 mr-4 text-gray-700" aria-hidden="true">
9
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
10
- </svg>
11
- <div>
12
- <p class="mt-0 mb-3 font-semibold text-gray-900">How can I use these components?</p>
13
- <p class="text-gray-600">
14
- You can easily use any of these components in any project by exporting the HTML and then importing it into your application. Each component and template is fully customizable to you can configure it to make it your own.
15
- </p>
16
- </div>
17
- </div>
18
- <div class="flex items-start justify-start mb-12">
19
- <svg fill="none" viewBox="0 0 24 24" stroke="currentColor" class="flex-none w-6 h-6 mr-4 text-gray-700" aria-hidden="true">
20
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
21
- </svg>
22
- <div>
23
- <p class="mt-0 mb-3 font-semibold text-gray-900">What do I get with a Pro Subscription?</p>
24
- <p class="text-gray-600">
25
- With a Pro Plan you have access to all components and templates. You will also have access to our <a href="https://devdojo.com/wave" target="_blank" class="font-medium text-blue-500 underline">Software as a Service Starter Kit</a>, called Wave. Utilizing these tools will help you build your application in record time. Along with these tools, you will also have access to premium Videos, Courses, and Books to help you along on your journey.
26
- </p>
27
- </div>
28
- </div>
29
- <div class="flex items-start justify-start mb-12">
30
- <svg fill="none" viewBox="0 0 24 24" stroke="currentColor" class="flex-none w-6 h-6 mr-4 text-gray-700" aria-hidden="true">
31
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
32
- </svg>
33
- <div>
34
- <p class="mt-0 mb-3 font-semibold text-gray-900">How much is a Pro Subscription?</p>
35
- <p class="text-gray-600">
36
- A Pro Subscription will cost $15/month, or you can choose the annual plan and pay $99/year. Both plans will give you access to our premium resources that will help you on your journey of turning your side-project into profitable and sustainable services. There is no commitment, and you can cancel anytime.
37
- </p>
38
- </div>
39
- </div>
40
- <div class="flex w-full text-center">
41
- <a href="https://developer.mozilla.org/en-US/docs/Learn/CSS/Howto/CSS_FAQ" target="_blank" class="flex items-center px-4 py-2 mx-auto text-gray-500 bg-gray-100 rounded-lg hover:text-gray-700 hover:bg-gray-200">
42
- <span>View All Questions</span>
43
- <svg viewBox="0 0 20 20" fill="currentColor" class="w-4 h-4 ml-3">
44
- <path fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
45
- </svg>
46
- </a>
47
- </div>
48
- </div>
49
- </section>
@@ -1,12 +0,0 @@
1
- {
2
- "args": {
3
- "app_path": "p7",
4
- "destination_root": "/Users/davidcruwys/dev/printspeak"
5
- },
6
- "opts": {
7
- "skip_test": true,
8
- "template": "/Users/davidcruwys/dev/kgems/rails_app_generator/after_templates/application/printspeak/_.rb",
9
- "css": "bootstrap",
10
- "add_annotate": true
11
- }
12
- }