Files
pawol.nu/lib/rezo-lis.js
T

114 lines
3.1 KiB
JavaScript
Raw Normal View History

2022-01-23 21:46:27 +04:00
import YouTubeIcon from '@mui/icons-material/YouTube'
2022-01-24 06:15:13 +04:00
import TelegramIcon from '@mui/icons-material/Telegram'
2023-11-13 21:31:35 +04:00
import SquareRoundedIcon from '@mui/icons-material/SquareRounded'
2022-01-23 21:46:27 +04:00
import PeertubeIcon from './icons/peertube'
2023-07-22 13:57:12 +04:00
import XmppIcon from './icons/xmpp'
2023-07-24 22:38:24 +04:00
import XIcon from './icons/x'
2024-02-05 18:54:38 +01:00
import CodebergIcon from './icons/codeberg'
2022-01-23 21:46:27 +04:00
2024-02-05 18:54:38 +01:00
const codebergURL = process.env.NEXT_PUBLIC_CODEBERG || 'https://codeberg.org/OKI'
2023-11-13 21:31:35 +04:00
const blueskyUrl = process.env.NEXT_PUBLIC_BLUESKY_URL || 'https://bsky.app/profile/organisationka.bsky.social'
2023-07-25 09:03:30 +04:00
const xmppContact = process.env.NEXT_PUBLIC_XMPP || 'oki@xmpp.cz'
2022-01-23 21:46:27 +04:00
const gadeUsername = process.env.NEXT_PUBLIC_GADE_USERNAME || 'oki'
const youtubeUsername = process.env.NEXT_PUBLIC_YOUTUBE_USERNAME || 'OrganisationKInternationaleOKi'
const tiwtterUsername = process.env.NEXT_PUBLIC_TWITTER_USERNAME || 'OrganisationKA'
2022-01-24 06:15:13 +04:00
const telegramGroup = process.env.NEXT_PUBLIC_TELEGRAM_GROUP || 'OrganisationKA'
2022-01-23 21:46:27 +04:00
export const rezoLis = [
2024-02-05 18:54:38 +01:00
{
tit: 'Codeberg',
lyen: codebergURL,
icon: <CodebergIcon />
},
2023-11-13 21:31:35 +04:00
{
tit: 'Bluesky',
lyen: blueskyUrl,
icon: <SquareRoundedIcon />
},
2023-07-22 13:57:12 +04:00
{
2023-07-25 09:05:01 +04:00
tit: 'XMPP',
2023-07-22 13:57:12 +04:00
lyen: `xmpp:${xmppContact}`,
icon: <XmppIcon />
},
2022-01-23 21:46:27 +04:00
{
tit: 'Gadé',
lyen: `https://gade.o-k-i.net/a/${gadeUsername}/video-channels`,
icon: <PeertubeIcon />
},
2022-01-24 06:15:13 +04:00
{
tit: 'Telegram',
lyen: `https://t.me/${telegramGroup}`,
icon: <TelegramIcon />
},
2022-01-23 21:46:27 +04:00
{
tit: 'YouTube',
lyen: `https://www.youtube.com/c/${youtubeUsername}`,
icon: <YouTubeIcon />
},
{
tit: 'Twitter',
lyen: `https://twitter.com/${tiwtterUsername}`,
2023-07-24 22:38:24 +04:00
icon: <XIcon />
2022-01-23 21:46:27 +04:00
}
]
2022-02-02 07:33:18 +04:00
export const rezoNou = [
2022-06-12 20:03:13 +04:00
{
tit: 'Gadé',
img: 'gade',
soutit: 'Alternative pour YouTube',
ko: 'Vous pouvez commenter les vidéos avec un compte "Palé"',
lyen: 'https://gade.o-k-i.net/'
},
{
tit: 'Zwézo',
img: 'zwezo',
soutit: 'Twitter sur le Fediverse',
ko: 'Permet de suivre un compte Twitter depuis le Fediverse',
lyen: 'https://zwezo.o-k-i.net/'
},
2022-06-02 07:41:07 +04:00
{
tit: 'Lyannaj',
img: 'lyannaj',
soutit: 'Alternative pour Reddit',
ko: 'Partage de liens et discussions les concernant',
lyen: 'https://lyannaj.o-k-i.net/'
},
2022-02-02 07:33:18 +04:00
{
tit: 'Palé',
2022-02-08 21:48:32 +04:00
img: 'pale',
2022-02-02 07:33:18 +04:00
soutit: 'Alternative pour Twitter',
ko: 'Les posts sont limités à 5 000 caractères',
2022-06-07 06:49:28 +04:00
lyen: 'https://pale.o-k-i.net/'
2022-02-02 07:33:18 +04:00
},
{
2022-06-02 07:41:07 +04:00
tit: 'Mobilizé',
img: 'mobilize',
soutit: 'Alternative pour les groupes Facebook',
ko: 'Permet de trouver, créer et organiser des événements',
lyen: 'https://mobilize.o-k-i.net/'
2022-02-02 07:33:18 +04:00
},
2022-05-28 00:09:25 +04:00
{
tit: 'Ou Wè',
img: 'ouwe',
soutit: 'Alternative pour Instagram',
ko: 'Partage de photos et dimages sur le Fediverse',
lyen: 'https://ouwe.o-k-i.net/'
},
{
tit: 'Ékriti',
img: 'ekriti',
soutit: 'Alternative pour Tumblr ou Blogger',
ko: 'Créez votre blog et postez vos articles sur le Fediverse',
lyen: 'https://ekriti.o-k-i.net'
},
2022-02-19 21:47:33 +04:00
{
tit: 'Mizik',
img: 'mizik',
soutit: 'Alternative pour SoundCloud',
ko: 'Streaming gratuit et sans inscription obligatoire',
lyen: 'https://mizik.o-k-i.net/'
2022-05-10 16:52:10 +04:00
}
2022-02-02 07:33:18 +04:00
]