mirror of
https://github.com/arthur-pbty/links.git
synced 2026-08-01 20:29:27 +02:00
Refactor code structure and remove redundant sections for improved readability and maintainability
This commit is contained in:
@@ -1,62 +1,59 @@
|
||||
// Configuration pour vos liens de réseaux sociaux
|
||||
// Modifiez ce fichier pour personnaliser vos liens
|
||||
// Configuration des données affichées dans l'application Next.js
|
||||
|
||||
module.exports = {
|
||||
// Informations du profil
|
||||
profile: {
|
||||
name: 'Arthur',
|
||||
bio: 'Développeur passionné | Sportif de haut niveau',
|
||||
avatar: '/avatar.png' // Chemin relatif vers l'image dans public/
|
||||
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'
|
||||
},
|
||||
|
||||
// Liste des liens sociaux
|
||||
socialLinks: [
|
||||
{
|
||||
name: 'GitHub',
|
||||
url: 'https://github.com/arthur-pbty',
|
||||
icon: '/github.png', // Chemin relatif vers l'image dans public/
|
||||
description: 'Mon profil GitHub'
|
||||
},
|
||||
{
|
||||
name: 'Instagram',
|
||||
url: 'https://www.instagram.com/arthur.pbty/',
|
||||
icon: '/instagram.png',
|
||||
description: 'Mes photos et stories'
|
||||
},
|
||||
{
|
||||
name: 'FFVoile',
|
||||
url: 'https://www.ffvoile.fr/ffv/sportif/cif/cif_detail.aspx?NoLicence=1443697B',
|
||||
icon: '/ffvoile.png',
|
||||
description: 'Mon profil FFVoile'
|
||||
},
|
||||
{
|
||||
name: 'YouTube',
|
||||
url: 'https://www.youtube.com/@arthur-pbty',
|
||||
icon: '/youtube.png',
|
||||
description: 'Ma chaîne YouTube'
|
||||
},
|
||||
{
|
||||
name: 'Discord',
|
||||
url: 'https://discord.gg/MZSseRvCk8',
|
||||
icon: '/discord.png',
|
||||
description: 'Rejoignez mon serveur Discord'
|
||||
},
|
||||
{
|
||||
name: 'TikTok',
|
||||
url: 'https://www.tiktok.com/@arthur.pbty',
|
||||
icon: '/tiktok.png',
|
||||
description: 'Mes vidéos TikTok'
|
||||
},
|
||||
{
|
||||
name: 'Twitch',
|
||||
url: 'https://www.twitch.tv/arthur_pbty',
|
||||
icon: '/twitch.png',
|
||||
description: 'Mes streams en direct'
|
||||
}
|
||||
],
|
||||
|
||||
// Configuration du serveur
|
||||
server: {
|
||||
port: process.env.PORT || 3000
|
||||
{
|
||||
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'
|
||||
}
|
||||
};
|
||||
];
|
||||
Reference in New Issue
Block a user