Added Arctic For Lemmy to the app list (#449)

* Added Arctic For Lemmy to the app list

* Optimized Arctic banner image reducing its file size

* Replaced Arctic banner with a single screenshot

* Updated Arctic banner file name
This commit is contained in:
Dana Buehre 2025-01-08 15:18:32 -06:00 committed by GitHub
parent 1fd6c810c0
commit cfdd03a4aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 17 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View file

@ -448,6 +448,22 @@ const SUMMIT: AppDetails = {
platforms: [Platform.Android],
};
const ARCTIC: AppDetails = {
name: "Arctic",
description: "A free and native iOS client, written in Swift.",
link: "https://lemmy.world/c/arctic",
icon: "/static/assets/images/arctic_icon.webp",
banner: "/static/assets/images/arctic_screen.webp",
links: [
{
link: "https://apps.apple.com/us/app/arctic-for-lemmy/id6457925837",
icon: "appleinc",
},
],
sourceType: SourceType.Closed,
platforms: [Platform.IOS],
};
export const APP_LIST: AppDetails[] = [
ECHO,
JERBOA,
@ -467,4 +483,5 @@ export const APP_LIST: AppDetails[] = [
BOOST,
SYNC,
SUMMIT,
ARCTIC,
];