Add new image assets for social media platforms
- Added discord.png - Added ffvoile.png - Added github.png - Added instagram.png - Added tiktok.png - Added twitch.png - Added youtube.png
@@ -25,7 +25,9 @@ app.get('/', (req, res) => {
|
|||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="profile">
|
<div class="profile">
|
||||||
<div class="avatar">${profile.avatar}</div>
|
<div class="avatar">
|
||||||
|
<img src="${profile.avatar}" alt="Avatar" style="width:80px;height:80px;border-radius:50%;object-fit:cover;">
|
||||||
|
</div>
|
||||||
<h1>${profile.name}</h1>
|
<h1>${profile.name}</h1>
|
||||||
<p class="bio">${profile.bio}</p>
|
<p class="bio">${profile.bio}</p>
|
||||||
</div>
|
</div>
|
||||||
@@ -33,7 +35,9 @@ app.get('/', (req, res) => {
|
|||||||
<div class="links">
|
<div class="links">
|
||||||
${socialLinks.map(link => `
|
${socialLinks.map(link => `
|
||||||
<a href="${link.url}" target="_blank" rel="noopener noreferrer" class="link-card">
|
<a href="${link.url}" target="_blank" rel="noopener noreferrer" class="link-card">
|
||||||
<span class="icon">${link.icon}</span>
|
<span class="icon">
|
||||||
|
<img src="${link.icon}" alt="${link.name}" style="width:30px;height:30px;">
|
||||||
|
</span>
|
||||||
<div class="link-info">
|
<div class="link-info">
|
||||||
<h3>${link.name}</h3>
|
<h3>${link.name}</h3>
|
||||||
<p>${link.description}</p>
|
<p>${link.description}</p>
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ module.exports = {
|
|||||||
// Informations du profil
|
// Informations du profil
|
||||||
profile: {
|
profile: {
|
||||||
name: 'Arthur',
|
name: 'Arthur',
|
||||||
bio: 'Développeur passionné | Créateur de contenu',
|
bio: 'Développeur passionné | Sportif de haut niveau',
|
||||||
avatar: '👨💻' // Emoji ou chemin vers une image
|
avatar: '/avatar.png' // Chemin relatif vers l'image dans public/
|
||||||
},
|
},
|
||||||
|
|
||||||
// Liste des liens sociaux
|
// Liste des liens sociaux
|
||||||
@@ -14,26 +14,44 @@ module.exports = {
|
|||||||
{
|
{
|
||||||
name: 'GitHub',
|
name: 'GitHub',
|
||||||
url: 'https://github.com/arthur-pbty',
|
url: 'https://github.com/arthur-pbty',
|
||||||
icon: '🐙',
|
icon: '/github.png', // Chemin relatif vers l'image dans public/
|
||||||
description: 'Mon profil GitHub'
|
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',
|
name: 'Instagram',
|
||||||
url: 'https://instagram.com/arthur_pbty',
|
url: 'https://www.instagram.com/arthur.pbty/',
|
||||||
icon: '📷',
|
icon: '/instagram.png',
|
||||||
description: 'Mes photos et stories'
|
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'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|||||||
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 949 B |
|
After Width: | Height: | Size: 1.2 KiB |