Skip to content

Commit

Permalink
chore: implement requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
RicoPleasure committed Dec 30, 2024
1 parent 5581af6 commit bf19a05
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions lib/atomic_web/components/legal_pages_links.ex
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ defmodule AtomicWeb.Components.LegalPagesLinks do
~H"""
<div class="flex-colunm group mt-2 mb-4 flex w-full flex-wrap place-items-center justify-center gap-x-6 gap-y-1 px-8">
<.link navigate={~p"/tos"} class="shrink-0 select-none">
<p class="text-xs font-semibold text-zinc-400 hover:underline">Terms of Service</p>
<p class="text-xs font-semibold text-zinc-400 hover:underline"><%= gettext("Terms of Service") %></p>
</.link>
<.link navigate={~p"/privacy"} class="shrink-0 select-none">
<p class="text-xs font-semibold text-zinc-400 hover:underline">Privacy Policy</p>
<p class="text-xs font-semibold text-zinc-400 hover:underline"><%= gettext("Privacy Policy") %></p>
</.link>
<.link navigate={~p"/cookies"} class="shrink-0 select-none">
<p class="text-xs font-semibold text-zinc-400 hover:underline">Cookie Policy</p>
<p class="text-xs font-semibold text-zinc-400 hover:underline"><%= gettext("Cookie Policy") %></p>
</.link>
<span class="flex text-xs font-semibold text-zinc-400">&#169; 2024 CeSIUM</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule AtomicWeb.LegalTermsLive.Components.BlackBar do
~H"""
<section class="flex justify-center bg-zinc-800 p-10 font-semibold text-white">
<p class="flex w-full justify-center md:w-2/3">
Lorem ipsum dolor sit amet.
<%= gettext("Lorem ipsum dolor sit amet.") %>
</p>
</section>
"""
Expand Down
4 changes: 2 additions & 2 deletions lib/atomic_web/live/legal_terms_live/components/header.ex
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ defmodule AtomicWeb.LegalTermsLive.Components.Header do
</div>
<!-- Link to Home (hidden on mobile) -->
<div class="flex place-items-center lg:pr-12">
<.link class="atomic-button atomic-button--white atomic-button--md hidden sm:block" navigate={~p"/"}>Back home</.link>
<.link class="atomic-button atomic-button--md hero-home block text-zinc-400 sm:hidden" navigate={~p"/"}></.link>
<.button class="atomic-button atomic-button--white atomic-button--md hidden sm:block" patch={~p"/"}><%= gettext("Back Home") %></.button>
<.button class="atomic-button atomic-button--md hero-home block text-zinc-400 sm:hidden" patch={~p"/"}></.button>
</div>
</header>
"""
Expand Down

0 comments on commit bf19a05

Please sign in to comment.