mirror of
https://github.com/arthur-pbty/links.git
synced 2026-08-01 20:29:27 +02:00
Co-authored-by: arthur-pbty <128254439+arthur-pbty@users.noreply.github.com>
44 lines
1.0 KiB
JavaScript
44 lines
1.0 KiB
JavaScript
// Configuration pour vos liens de réseaux sociaux
|
|
// Modifiez ce fichier pour personnaliser vos liens
|
|
|
|
module.exports = {
|
|
// Informations du profil
|
|
profile: {
|
|
name: 'Arthur',
|
|
bio: 'Développeur passionné | Créateur de contenu',
|
|
avatar: '👨💻' // Emoji ou chemin vers une image
|
|
},
|
|
|
|
// Liste des liens sociaux
|
|
socialLinks: [
|
|
{
|
|
name: 'GitHub',
|
|
url: 'https://github.com/arthur-pbty',
|
|
icon: '🐙',
|
|
description: 'Mon profil GitHub'
|
|
},
|
|
{
|
|
name: 'LinkedIn',
|
|
url: 'https://linkedin.com/in/arthur-pbty',
|
|
icon: '💼',
|
|
description: 'Mon profil professionnel'
|
|
},
|
|
{
|
|
name: 'Twitter',
|
|
url: 'https://twitter.com/arthur_pbty',
|
|
icon: '🐦',
|
|
description: 'Mon compte Twitter'
|
|
},
|
|
{
|
|
name: 'Instagram',
|
|
url: 'https://instagram.com/arthur_pbty',
|
|
icon: '📷',
|
|
description: 'Mes photos et stories'
|
|
}
|
|
],
|
|
|
|
// Configuration du serveur
|
|
server: {
|
|
port: process.env.PORT || 3000
|
|
}
|
|
}; |