-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
167e14d
commit 08ef8de
Showing
2 changed files
with
19 additions
and
20 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
<footer class="bg-white"> | ||
<div class="mx-auto max-w-7xl overflow-hidden px-6 py-20 sm:py-24 lg:px-8"> | ||
<div class="-mb-6 columns-2 sm:flex sm:justify-center sm:space-x-12" aria-label="Footer"> | ||
<div class="pb-6"> | ||
<%= link_to "Status", "https://status.rubyvideo.dev/", target: "_blank", class: "link" %> | ||
</div> | ||
<div class="pb-6"> | ||
<%= link_to "Open analytics", analytics_dashboards_path, class: "link" %> | ||
</div> | ||
<div class="pb-6"> | ||
<%= link_to "Uses", uses_path, class: "link" %> | ||
</div> | ||
</div> | ||
<div class="mt-6 text-center leading-5 text-gray flex items-center justify-center gap-1"> | ||
Made with | ||
<%= heroicon :heart, variant: :solid, size: :sm, class: "text-brand" %> | ||
for the ruby community by | ||
<%= link_to "@adrienpoly", "https://twitter.com/adrienpoly", target: "_blank", class: "link" %> | ||
and wonderful | ||
<%= link_to "contributors", "https://github.com/adrienpoly/rubyvideo/graphs/contributors", target: "_blank", class: "link" %> | ||
<div class="flex flex-col justify-center max-w-7xl mx-auto overflow-hidden px-6 py-20 sm:py-24 lg:px-8"> | ||
<div class="flex justify-center items-center flex-wrap gap-4 sm:gap-8" aria-label="Footer"> | ||
<%= link_to "Status", "https://status.rubyvideo.dev/", target: "_blank", class: "link" %> | ||
<%= link_to "Open analytics", analytics_dashboards_path, class: "link" %> | ||
<%= link_to "Uses", uses_path, class: "link" %> | ||
</div> | ||
<p class="mt-6 text-center text-gray inline leading-relaxed"> | ||
<% output = [] | ||
output << "Made with" | ||
output << heroicon(:heart, variant: :solid, size: :sm, class: "text-brand inline") | ||
output << "for the Ruby community by" | ||
output << link_to("@adrienpoly", "https://twitter.com/adrienpoly", target: "_blank", class: "link") | ||
output << "and wonderful" | ||
output << link_to("contributors", "https://github.com/adrienpoly/rubyvideo/graphs/contributors", target: "_blank", class: "link") | ||
output << "using an" | ||
output << link_to("edge stack.", uses_path, class: "link") | ||
%> | ||
<%= raw(output.join(" ")) %> | ||
</p> | ||
</div> | ||
</footer> |