2022-01-23 21:46:27 +04:00
|
|
|
import TwitterIcon from '@mui/icons-material/Twitter'
|
|
|
|
|
import YouTubeIcon from '@mui/icons-material/YouTube'
|
2022-01-24 06:15:13 +04:00
|
|
|
import TelegramIcon from '@mui/icons-material/Telegram'
|
2022-01-23 21:46:27 +04:00
|
|
|
|
|
|
|
|
import PeertubeIcon from './icons/peertube'
|
|
|
|
|
import PleromaIcon from './icons/pleroma'
|
|
|
|
|
|
|
|
|
|
const gadeUsername = process.env.NEXT_PUBLIC_GADE_USERNAME || 'oki'
|
|
|
|
|
const paleUsername = process.env.NEXT_PUBLIC_PALE_USERNAME || '@admin'
|
|
|
|
|
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 = [
|
|
|
|
|
{
|
|
|
|
|
tit: 'Gadé',
|
|
|
|
|
lyen: `https://gade.o-k-i.net/a/${gadeUsername}/video-channels`,
|
|
|
|
|
icon: <PeertubeIcon />
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
tit: 'Palé',
|
|
|
|
|
lyen: `https://pale.o-k-i.net/${paleUsername}`,
|
|
|
|
|
icon: <PleromaIcon />
|
|
|
|
|
},
|
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}`,
|
|
|
|
|
icon: <TwitterIcon />
|
|
|
|
|
}
|
|
|
|
|
]
|
2022-02-02 07:33:18 +04:00
|
|
|
|
|
|
|
|
export const rezoNou = [
|
|
|
|
|
{
|
|
|
|
|
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',
|
|
|
|
|
lyen: 'https://pale.o-k-i.net/timeline/local'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
tit: 'Gadé',
|
2022-02-08 21:48:32 +04:00
|
|
|
img: 'gade',
|
2022-02-02 07:33:18 +04:00
|
|
|
soutit: 'Alternative pour YouTube',
|
|
|
|
|
ko: 'Vous pouvez commenter les vidéos avec un compte "Palé"',
|
|
|
|
|
lyen: 'https://gade.o-k-i.net/'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
tit: 'Mobilizé',
|
2022-02-08 21:48:32 +04:00
|
|
|
img: 'mobilize',
|
2022-02-02 07:39:34 +04:00
|
|
|
soutit: 'Alternative pour les groupes Facebook',
|
2022-02-02 07:33:18 +04:00
|
|
|
ko: 'Permet de trouver, créer et organiser des événements',
|
|
|
|
|
lyen: 'https://mobilize.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
|
|
|
]
|