From 9efe50411b1ff4a84e863854f92896a924e5e8f9 Mon Sep 17 00:00:00 2001 From: jk-lamb Date: Mon, 20 Oct 2025 17:13:48 -0600 Subject: [PATCH 1/2] Add link to Curiosum website and clean up footer styling - Embedded Curiosum logo in svg format --- .../templates/layouts/dashboard.html.heex | 63 ++++++++++++++----- 1 file changed, 49 insertions(+), 14 deletions(-) diff --git a/lib/kanta_web/templates/layouts/dashboard.html.heex b/lib/kanta_web/templates/layouts/dashboard.html.heex index e83d3a0..3baad89 100644 --- a/lib/kanta_web/templates/layouts/dashboard.html.heex +++ b/lib/kanta_web/templates/layouts/dashboard.html.heex @@ -65,19 +65,54 @@ <% end %> - -
- @@ -90,14 +125,14 @@
-
From bb847b97dbd7cf3d80991fac00606089eb8bb85f Mon Sep 17 00:00:00 2001 From: jk-lamb Date: Thu, 23 Oct 2025 14:05:15 -0600 Subject: [PATCH 2/2] Remove shards dependency --- config/config.exs | 2 +- mix.exs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/config/config.exs b/config/config.exs index b8f8293..9509349 100644 --- a/config/config.exs +++ b/config/config.exs @@ -3,7 +3,7 @@ import Config config :kanta, Kanta.Cache, primary: [ gc_interval: :timer.hours(24), - backend: :shards + backend: :ets ] config :phoenix, :json_library, Jason diff --git a/mix.exs b/mix.exs index 0bfebe3..d516ad2 100644 --- a/mix.exs +++ b/mix.exs @@ -49,7 +49,6 @@ defmodule Kanta.MixProject do {:tailwind, "~> 0.2", runtime: Mix.env() == :dev}, {:jason, "~> 1.0"}, {:nebulex, "~> 2.5"}, - {:shards, "~> 1.0"}, {:scrivener, "~> 2.0"}, {:scrivener_ecto, "~> 3.0"}, {:uri_query, "~> 0.2"},