Skip to content

Commit a5d0cd8

Browse files
committed
refactor: update image sources to use local assets
- Changed image source paths in the home live and onboarding modules to reference local assets instead of external URLs. - Added new wordmark images for various organizations to the static assets directory for improved loading performance and consistency.
1 parent 1e53ff0 commit a5d0cd8

File tree

20 files changed

+12
-20
lines changed

20 files changed

+12
-20
lines changed

lib/algora_web/live/home_live.ex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1331,7 +1331,7 @@ defmodule AlgoraWeb.HomeLive do
13311331
</.link>
13321332
<.link class="relative flex items-center justify-center" navigate={~p"/org/triggerdotdev"}>
13331333
<img
1334-
src="https://algora.io/banners/triggerdotdev.png"
1334+
src={~p"/images/wordmarks/triggerdotdev.png"}
13351335
alt="Trigger.dev"
13361336
class="col-auto sm:w-[90%] saturate-0"
13371337
loading="lazy"
@@ -1375,7 +1375,7 @@ defmodule AlgoraWeb.HomeLive do
13751375
</.link>
13761376
<.link class="relative flex items-center justify-center" navigate={~p"/org/aidenybai"}>
13771377
<img
1378-
src="https://algora.io/banners/million.png"
1378+
src={~p"/images/wordmarks/million.png"}
13791379
alt="Million"
13801380
class="col-auto w-[80%] saturate-0"
13811381
loading="lazy"
@@ -1386,15 +1386,15 @@ defmodule AlgoraWeb.HomeLive do
13861386
</.link>
13871387
<.link class="relative flex items-center justify-center" navigate={~p"/org/highlight"}>
13881388
<img
1389-
src="https://algora.io/banners/highlight.png"
1389+
src={~p"/images/wordmarks/highlight.png"}
13901390
alt="Highlight"
13911391
class="col-auto sm:w-[90%] saturate-0"
13921392
loading="lazy"
13931393
/>
13941394
</.link>
13951395
<.link class="relative flex items-center justify-center" navigate={~p"/org/dittofeed"}>
13961396
<img
1397-
src="https://algora.io/banners/dittofeed.png"
1397+
src={~p"/images/wordmarks/dittofeed.png"}
13981398
alt="Dittofeed"
13991399
class="col-auto w-[80%] brightness-0 invert"
14001400
loading="lazy"

lib/algora_web/live/onboarding/org.ex

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -761,62 +761,54 @@ defmodule AlgoraWeb.Onboarding.OrgLive do
761761
</a>
762762
<a class="relative flex items-center justify-center" href={~p"/org/remotion"}>
763763
<img
764-
src="https://algora.io/banners/remotion.png"
764+
src={~p"/images/wordmarks/remotion.png"}
765765
alt="Remotion"
766766
class="col-auto w-full saturate-0"
767767
/>
768768
</a>
769769
<a class="relative flex items-center justify-center" href={~p"/org/zio"}>
770770
<img
771-
src="https://algora.io/banners/zio.png"
771+
src={~p"/images/wordmarks/zio.png"}
772772
alt="ZIO"
773773
class="w-[10rem] col-auto brightness-0 invert"
774774
/>
775775
</a>
776776
<a class="relative flex items-center justify-center" href={~p"/org/triggerdotdev"}>
777777
<img
778-
src="https://algora.io/banners/triggerdotdev.png"
778+
src={~p"/images/wordmarks/triggerdotdev.png"}
779779
alt="Trigger.dev"
780780
class="col-auto w-full saturate-0"
781781
/>
782782
</a>
783783
<a class="relative flex items-center justify-center" href={~p"/org/tembo"}>
784784
<img
785-
src="https://algora.io/banners/tembo.png"
785+
src={~p"/images/wordmarks/tembo.png"}
786786
alt="Tembo"
787787
class="w-[13rem] col-auto saturate-0"
788788
/>
789789
</a>
790790
<a class="relative flex items-center justify-center" href={~p"/org/maybe-finance"}>
791-
<img
792-
src="https://algora.io/banners/maybe.png"
793-
alt="Maybe"
794-
class="col-auto w-full saturate-0"
795-
/>
791+
<img src={~p"/images/wordmarks/maybe.png"} alt="Maybe" class="col-auto w-full saturate-0" />
796792
</a>
797793
<a class="relative flex items-center justify-center" href={~p"/org/golemcloud"}>
798794
<Wordmarks.golemcloud class="col-auto w-full" alt="Golem Cloud" />
799795
</a>
800796
<a class="relative flex items-center justify-center" href={~p"/org/aidenybai"}>
801-
<img
802-
src="https://algora.io/banners/million.png"
803-
alt="Million"
804-
class="col-auto w-44 saturate-0"
805-
/>
797+
<img src={~p"/images/wordmarks/million.png"} alt="Million" class="col-auto w-44 saturate-0" />
806798
</a>
807799
<a class="relative flex items-center justify-center" href={~p"/org/tailcallhq"}>
808800
<Wordmarks.tailcall class="w-[10rem] col-auto" fill="white" alt="Tailcall" />
809801
</a>
810802
<a class="relative flex items-center justify-center" href={~p"/org/highlight"}>
811803
<img
812-
src="https://algora.io/banners/highlight.png"
804+
src={~p"/images/wordmarks/highlight.png"}
813805
alt="Highlight"
814806
class="col-auto w-44 saturate-0"
815807
/>
816808
</a>
817809
<a class="relative flex items-center justify-center" href={~p"/org/dittofeed"}>
818810
<img
819-
src="https://algora.io/banners/dittofeed.png"
811+
src={~p"/images/wordmarks/dittofeed.png"}
820812
alt="Dittofeed"
821813
class="col-auto w-40 brightness-0 invert"
822814
/>
35.5 KB
Loading
19.3 KB
Loading
25.6 KB
Loading
11.9 KB
Loading
8.55 KB
Loading
5.29 KB
Loading
16.8 KB
Loading
9.37 KB
Loading

0 commit comments

Comments
 (0)