Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/views/community_news/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="w-full">
<div class="flex items-start justify-between mb-6">
<div class="pr-6">
<h2 class="text-2xl font-semibold mb-2">Community News (<%= @community_news_count %>)</h2>
<h2 class="text-2xl font-semibold mb-2">Community news (<%= @community_news_count %>)</h2>
</div>
<div class="text-right text-end">
<% if current_user.super_user? %>
Expand Down
2 changes: 1 addition & 1 deletion app/views/contact_us/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- Contact Info Card -->
<div class="bg-white border border-gray-200 rounded-xl shadow-sm p-6">
<h2 class="text-2xl font-semibold text-gray-900 mb-3">Contact Us</h2>
<h2 class="text-2xl font-semibold text-gray-900 mb-3">Contact us</h2>
<div class="text-gray-700 mt-3">
Questions? Comments? Concerns? We’d love to hear from you!
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/dashboard/_community_news.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<section class="mt-6 py-10 bg-orange-50">
<div class="max-w-6xl mx-auto px-4">
<%= render "dashboard_section_header",
title: "Community News",
title: "Community news",
subtitle: "Announcements and updates" %>

<% if community_news.any? %>
Expand Down
4 changes: 2 additions & 2 deletions app/views/shared/_footer_nav.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@

<%= link_to contact_us_path, class: "flex items-center space-x-2 text-gray-800 px-3 py-2 rounded hover:bg-gray-100 w-max" do %>
<i class="fas fa-envelope"></i>
<span>Contact Us</span>
<span>Contact us</span>
<% end %>


<%= link_to "https://www.awbw.org", target: "_blank", class: "flex items-center space-x-2 text-gray-800 px-3 py-2 rounded hover:bg-gray-100 w-max" do %>
<i class="fas fa-globe"></i>
<span>Public Site</span>
<span>Public website</span>
<% end %>


Expand Down
6 changes: 3 additions & 3 deletions app/views/shared/_navbar_menu.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<%= link_to community_news_index_path,
class: "flex items-center gap-2 px-4 py-2 text-sm text-gray-700 hover:bg-gray-100" do %>
<i class="fas fa-newspaper"></i>
<span>Community News</span>
<span>Community news</span>
<% end %>

<%= link_to stories_path,
Expand Down Expand Up @@ -106,13 +106,13 @@
<%= link_to contact_us_path,
class: "flex items-center gap-2 px-4 py-2 text-sm text-gray-700 hover:bg-gray-100" do %>
<i class="fas fa-envelope"></i>
<span>Contact Us</span>
<span>Contact us</span>
<% end %>

<%= link_to "https://www.awbw.org", target: "_blank", rel: "noopener",
class: "flex items-center gap-2 px-4 py-2 text-sm text-gray-700 hover:bg-gray-100" do %>
<i class="fas fa-globe"></i>
<span>Public Site</span>
<span>Public website</span>
<% end %>

<%= link_to dashboard_help_path,
Expand Down
6 changes: 3 additions & 3 deletions app/views/shared/_navbar_menu_mobile.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<%= link_to community_news_index_path, class: "flex items-center px-4 py-2 text-sm text-white
hover:text-gray-700 hover:bg-gray-100 w-full space-x-2" do %>
<i class="fas fa-newspaper"></i>
<span>Community News</span>
<span>Community news</span>
<% end %>
<%= link_to stories_path, class: "flex items-center px-4 py-2 text-sm text-white
hover:text-gray-700 hover:bg-gray-100 w-full space-x-2" do %>
Expand Down Expand Up @@ -82,14 +82,14 @@
<%= link_to contact_us_path, class: "flex items-center px-4 py-2 text-sm text-white
hover:text-gray-700 hover:bg-gray-100 w-full space-x-2" do %>
<i class="fas fa-envelope"></i>
<span>Contact Us</span>
<span>Contact us</span>
<% end %>


<%= link_to "https://www.awbw.org", target: "_blank", class: "flex items-center px-4 py-2 text-sm text-white
hover:text-gray-700 hover:bg-gray-100 w-full space-x-2" do %>
<i class="fas fa-globe"></i>
<span>Public Site</span>
<span>Public website</span>
<% end %>


Expand Down