mirror of
https://github.com/arthur-pbty/links.git
synced 2026-08-01 20:29:27 +02:00
59 lines
1.4 KiB
JavaScript
59 lines
1.4 KiB
JavaScript
// Configuration des données affichées dans l'application Next.js
|
|
|
|
export const profile = {
|
|
name: 'Arthur',
|
|
bio: 'Développeur passionné | Sportif de haut niveau',
|
|
avatar: '/avatar.png'
|
|
};
|
|
|
|
export const socialLinks = [
|
|
{
|
|
name: 'GitHub',
|
|
url: 'https://github.com/arthur-pbty',
|
|
icon: '/github.png',
|
|
description: 'Mon profil GitHub',
|
|
category: 'Développement'
|
|
},
|
|
{
|
|
name: 'Instagram',
|
|
url: 'https://www.instagram.com/arthur.pbty/',
|
|
icon: '/instagram.png',
|
|
description: 'Mes photos et stories',
|
|
category: 'Réseaux'
|
|
},
|
|
{
|
|
name: 'FFVoile',
|
|
url: 'https://www.ffvoile.fr/ffv/sportif/cif/cif_detail.aspx?NoLicence=1443697B',
|
|
icon: '/ffvoile.png',
|
|
description: 'Mon profil FFVoile',
|
|
category: 'Sport'
|
|
},
|
|
{
|
|
name: 'YouTube',
|
|
url: 'https://www.youtube.com/@arthur-pbty',
|
|
icon: '/youtube.png',
|
|
description: 'Ma chaîne YouTube',
|
|
category: 'Création'
|
|
},
|
|
{
|
|
name: 'Discord',
|
|
url: 'https://discord.gg/MZSseRvCk8',
|
|
icon: '/discord.png',
|
|
description: 'Rejoignez mon serveur Discord',
|
|
category: 'Communauté'
|
|
},
|
|
{
|
|
name: 'TikTok',
|
|
url: 'https://www.tiktok.com/@arthur.pbty',
|
|
icon: '/tiktok.png',
|
|
description: 'Mes vidéos TikTok',
|
|
category: 'Création'
|
|
},
|
|
{
|
|
name: 'Twitch',
|
|
url: 'https://www.twitch.tv/arthur_pbty',
|
|
icon: '/twitch.png',
|
|
description: 'Mes streams en direct',
|
|
category: 'Streaming'
|
|
}
|
|
]; |