diff --git a/Gemfile b/Gemfile index 5b298df3..461f8d32 100644 --- a/Gemfile +++ b/Gemfile @@ -41,7 +41,7 @@ gem 'redis', '~> 4.0' # Devise 4.0 works with Rails 4.1 onwards. gem 'devise' -#A dynamic sitemap generator gem for the Ruby on Rails framework +# A dynamic sitemap generator gem for the Ruby on Rails framework gem 'sitemap_generator' # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword] diff --git a/app/views/landing/about.html.erb b/app/views/landing/about.html.erb index ec46a3e4..b6825cc2 100644 --- a/app/views/landing/about.html.erb +++ b/app/views/landing/about.html.erb @@ -1,7 +1,7 @@ <% content_for(:title,"About us") %> -<% content_for(:description,"The community hosts weekly and monthly meetups in different cities in East Africa. The community brings you Ruby Conference every year with different themes to fill the gap that exist between school and industry and in return helps spur innovation and growth in contribution to global economy") %> +<% content_for(:description,"ARC brings entrepreneurs, developers, Designers, open source contributors together") %>
- <%= image_tag image_path('workshop.jpg'), class: "pt-20 w-fit h-fit", style: "filter: brightness(40%);" %> + <%= image_tag('workshop.jpg', alt:"ARC Workshop", class: "pt-20 w-fit h-fit", style: "filter: brightness(40%);") %>
diff --git a/app/views/landing/home/_chapters.html.erb b/app/views/landing/home/_chapters.html.erb index 9c4bf209..6517acba 100644 --- a/app/views/landing/home/_chapters.html.erb +++ b/app/views/landing/home/_chapters.html.erb @@ -8,7 +8,7 @@ xl:grid-cols-5 gap-2 px-20 place-content-center">
- <%= image_tag image_path('country_kenya.png'), class: 'pt-2 place-self-center h-16 md:36' %> + <%= image_tag('country_kenya.png', alt: "Nairuby",class: 'pt-2 place-self-center h-16 md:36') %>

Kenya

<%= link_to new_user_registration_path, class: 'place-self-center pb-6' do %> @@ -19,7 +19,7 @@ xl:grid-cols-5 gap-2 px-20 place-content-center">
- <%= image_tag image_path('country_rwanda.png'), class: 'pt-2 place-self-center h-16 md:36' %> + <%= image_tag('country_rwanda.png', alt:"ARC_Rwanda", class: 'pt-2 place-self-center h-16 md:36') %>

Rwanda

<%= link_to new_user_registration_path, class: 'place-self-center pb-6' do %> @@ -30,7 +30,7 @@ xl:grid-cols-5 gap-2 px-20 place-content-center">
- <%= image_tag image_path('country_tanzania.png'), class: 'pt-2 place-self-center h-16 md:36' %> + <%= image_tag('country_tanzania.png',alt:"ARC_Tanzania", class: 'pt-2 place-self-center h-16 md:36') %>

Tanzania

<%= link_to new_user_registration_path, class: 'place-self-center pb-6' do %> @@ -41,7 +41,7 @@ xl:grid-cols-5 gap-2 px-20 place-content-center">
- <%= image_tag image_path('country_uganda.png'), class: 'pt-2 place-self-center h-16 md:36' %> + <%= image_tag('country_uganda.png',alt:"ARC_Uganda", class: 'pt-2 place-self-center h-16 md:36') %>

Uganda

<%= link_to new_user_registration_path, class: 'place-self-center pb-6' do %> @@ -52,7 +52,7 @@ xl:grid-cols-5 gap-2 px-20 place-content-center"> - <%= image_tag image_path('add.png'), class: 'pt-2 place-self-center h-16 md:36' %> + <%= image_tag('add.png',alt:" Add Chapter",class: 'pt-2 place-self-center h-16 md:36') %>

Request new chapter

diff --git a/app/views/layouts/_footer.html.erb b/app/views/layouts/_footer.html.erb index 9052552f..1b99ece6 100644 --- a/app/views/layouts/_footer.html.erb +++ b/app/views/layouts/_footer.html.erb @@ -2,7 +2,7 @@
<%= link_to root_path, class: "justify-end pr-20" do %> - <%= image_tag image_path('arc_dark_gray_logo.png'), class: 'w-20 md:w-48' %> + <%= image_tag('arc_dark_gray_logo.png', alt: "Community Logo", class: 'w-20 md:w-48') %> <% end %>
@@ -57,7 +57,7 @@ <%= link_to 'https://twitter.com/ruby_african' do %>
- <%= image_tag image_path('brands_twitter.png'), class: "w-5" %> + <%= image_tag('brands_twitter.png', alt: "ARC Twitter", class: "w-5" )%>
<% end %> @@ -68,7 +68,7 @@ <%= link_to '#' do %>
- <%= image_tag image_path('brands_telegram.png'), class: "w-5" %> + <%= image_tag('brands_telegram.png',alt: "ARC telegram", class: "w-5") %>
Telegram
@@ -80,7 +80,7 @@ <%= link_to 'https://www.facebook.com/rubycommunity.africa' do %>
- <%= image_tag image_path('brands_facebook.png'), class: "w-5" %> + <%= image_tag('brands_facebook.png',alt: "ARC Facebook", class: "w-5") %>
<% end %> @@ -90,7 +90,7 @@ <%= link_to '#' do %>
- <%= image_tag image_path('brands_instagram.png'), class: "w-5" %> + <%= image_tag('brands_instagram.png', alt: "ARC Instagram", class: "w-5") %>
<% end %> @@ -100,7 +100,7 @@ <%= link_to 'https://www.linkedin.com/company/african-ruby-community/' do %>
- <%= image_tag image_path('brands_linkedin.png'), class: "w-5" %> + <%= image_tag('brands_linkedin.png',alt:"ARC LinkedIn", class: "w-5") %>
<% end %> @@ -110,7 +110,7 @@ <%= link_to 'https://github.com/nairuby' do %>
- <%= image_tag image_path('brands_github.png'), class: "w-5" %> + <%= image_tag('brands_github.png', alt: "ARC Github", class: "w-5" )%>
<% end %> diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index e34842bd..d074c1bf 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -1,5 +1,5 @@ - + ArcPlatform <%= " - " + yield(:title) if content_for?(:title)%> > @@ -28,7 +28,7 @@