107 lines
2.9 KiB
JavaScript
107 lines
2.9 KiB
JavaScript
import YouTubeIcon from '@mui/icons-material/YouTube'
|
||
import TelegramIcon from '@mui/icons-material/Telegram'
|
||
import SquareRoundedIcon from '@mui/icons-material/SquareRounded'
|
||
|
||
import PeertubeIcon from './icons/peertube'
|
||
import XmppIcon from './icons/xmpp'
|
||
import XIcon from './icons/x'
|
||
|
||
const blueskyUrl = process.env.NEXT_PUBLIC_BLUESKY_URL || 'https://bsky.app/profile/organisationka.bsky.social'
|
||
const xmppContact = process.env.NEXT_PUBLIC_XMPP || 'oki@xmpp.cz'
|
||
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'
|
||
const telegramGroup = process.env.NEXT_PUBLIC_TELEGRAM_GROUP || 'OrganisationKA'
|
||
|
||
export const rezoLis = [
|
||
{
|
||
tit: 'Bluesky',
|
||
lyen: blueskyUrl,
|
||
icon: <SquareRoundedIcon />
|
||
},
|
||
{
|
||
tit: 'XMPP',
|
||
lyen: `xmpp:${xmppContact}`,
|
||
icon: <XmppIcon />
|
||
},
|
||
{
|
||
tit: 'Gadé',
|
||
lyen: `https://gade.o-k-i.net/a/${gadeUsername}/video-channels`,
|
||
icon: <PeertubeIcon />
|
||
},
|
||
{
|
||
tit: 'Telegram',
|
||
lyen: `https://t.me/${telegramGroup}`,
|
||
icon: <TelegramIcon />
|
||
},
|
||
{
|
||
tit: 'YouTube',
|
||
lyen: `https://www.youtube.com/c/${youtubeUsername}`,
|
||
icon: <YouTubeIcon />
|
||
},
|
||
{
|
||
tit: 'Twitter',
|
||
lyen: `https://twitter.com/${tiwtterUsername}`,
|
||
icon: <XIcon />
|
||
}
|
||
]
|
||
|
||
export const rezoNou = [
|
||
{
|
||
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/'
|
||
},
|
||
{
|
||
tit: 'Lyannaj',
|
||
img: 'lyannaj',
|
||
soutit: 'Alternative pour Reddit',
|
||
ko: 'Partage de liens et discussions les concernant',
|
||
lyen: 'https://lyannaj.o-k-i.net/'
|
||
},
|
||
{
|
||
tit: 'Palé',
|
||
img: 'pale',
|
||
soutit: 'Alternative pour Twitter',
|
||
ko: 'Les posts sont limités à 5 000 caractères',
|
||
lyen: 'https://pale.o-k-i.net/'
|
||
},
|
||
{
|
||
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/'
|
||
},
|
||
{
|
||
tit: 'Ou Wè',
|
||
img: 'ouwe',
|
||
soutit: 'Alternative pour Instagram',
|
||
ko: 'Partage de photos et d’images 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'
|
||
},
|
||
{
|
||
tit: 'Mizik',
|
||
img: 'mizik',
|
||
soutit: 'Alternative pour SoundCloud',
|
||
ko: 'Streaming gratuit et sans inscription obligatoire',
|
||
lyen: 'https://mizik.o-k-i.net/'
|
||
}
|
||
]
|