File size: 13,986 Bytes
a650b9a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Mes Réseaux Sociaux</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        
        .social-card {
            transition: all 0.3s ease;
            transform: translateY(0);
        }
        
        .social-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
    </style>
</head>
<body class="flex flex-col items-center justify-center py-12 px-4">
    <div class="max-w-4xl w-full mx-auto text-center">
        <!-- Header -->
        <div class="mb-12">
            <div class="w-32 h-32 mx-auto rounded-full overflow-hidden border-4 border-white shadow-lg mb-6">
                <img src=https://www.japanfm.fr/wp-content/uploads/2024/03/luffy-chapeau-tenu-scaled.jpg
                     alt="Profile" class="w-full h-full object-cover">
            </div>
            <h1 class="text-4xl font-bold text-gray-800 mb-2">Rejoignez-moi</h1>
            <p class="text-lg text-gray-600 max-w-lg mx-auto">Suivez-moi sur mes différents réseaux sociaux pour ne rien manquer !</p>
        </div>
        
        <!-- Social Links -->
        <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-6 gap-6 mb-12">
            <!-- Facebook -->
            <div class="social-card bg-white rounded-xl p-6 shadow-md cursor-pointer pulse" 
                 onclick="redirectTo('facebook')">
                <div class="w-16 h-16 mx-auto mb-4 rounded-full bg-blue-100 flex items-center justify-center">
                    <i class="fab fa-facebook-f text-blue-600 text-2xl"></i>
                </div>
                <h3 class="text-xl font-semibold text-gray-800 mb-2">Facebook</h3>
                <p class="text-gray-600 mb-4">Suivez mes actualités</p>
                <button class="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition">
                    Suivre
                </button>
            </div>
            
            <!-- TikTok -->
            <div class="social-card bg-white rounded-xl p-6 shadow-md cursor-pointer pulse" 
                 onclick="redirectTo('tiktok')">
                <div class="w-16 h-16 mx-auto mb-4 rounded-full bg-pink-100 flex items-center justify-center">
                    <i class="fab fa-tiktok text-black text-2xl"></i>
                </div>
                <h3 class="text-xl font-semibold text-gray-800 mb-2">TikTok</h3>
                <p class="text-gray-600 mb-4">Découvrez mes vidéos</p>
                <button class="px-4 py-2 bg-black text-white rounded-lg hover:bg-gray-800 transition">
                    Suivre
                </button>
            </div>
            
            <!-- Snapchat -->
            <div class="social-card bg-white rounded-xl p-6 shadow-md cursor-pointer pulse" 
                 onclick="redirectTo('snapchat')">
                <div class="w-16 h-16 mx-auto mb-4 rounded-full bg-yellow-100 flex items-center justify-center">
                    <i class="fab fa-snapchat-ghost text-yellow-500 text-2xl"></i>
                </div>
                <h3 class="text-xl font-semibold text-gray-800 mb-2">Snapchat</h3>
                <p class="text-gray-600 mb-4">Mes moments du quotidien</p>
                <button class="px-4 py-2 bg-yellow-500 text-white rounded-lg hover:bg-yellow-600 transition">
                    Ajouter
                </button>
            </div>
            
            <!-- Instagram -->
            <div class="social-card bg-white rounded-xl p-6 shadow-md cursor-pointer pulse" 
                 onclick="redirectTo('instagram')">
                <div class="w-16 h-16 mx-auto mb-4 rounded-full bg-gradient-to-r from-purple-500 via-pink-500 to-yellow-500 flex items-center justify-center">
                    <i class="fab fa-instagram text-white text-2xl"></i>
                </div>
                <h3 class="text-xl font-semibold text-gray-800 mb-2">Instagram</h3>
                <p class="text-gray-600 mb-4">Voir mes photos</p>
                <button class="px-4 py-2 bg-gradient-to-r from-purple-500 via-pink-500 to-yellow-500 text-white rounded-lg hover:opacity-90 transition">
                    Suivre
                </button>
            </div>
            
            <!-- WhatsApp -->
            <div class="social-card bg-white rounded-xl p-6 shadow-md cursor-pointer pulse" 
                 onclick="redirectTo('whatsapp')">
                <div class="w-16 h-16 mx-auto mb-4 rounded-full bg-green-100 flex items-center justify-center">
                    <i class="fab fa-whatsapp text-green-600 text-2xl"></i>
                </div>
                <h3 class="text-xl font-semibold text-gray-800 mb-2">WhatsApp</h3>
                <p class="text-gray-600 mb-4">Contactez-moi directement</p>
                <button class="px-4 py-2 bg-green-600 text-white rounded-lg hover:bg-green-700 transition">
                    Envoyer un message
                </button>
            </div>
            
            <!-- YouTube -->
            <div class="social-card bg-white rounded-xl p-6 shadow-md cursor-pointer pulse" 
                 onclick="redirectTo('youtube')">
                <div class="w-16 h-16 mx-auto mb-4 rounded-full bg-red-100 flex items-center justify-center">
                    <i class="fab fa-youtube text-red-600 text-2xl"></i>
                </div>
                <h3 class="text-xl font-semibold text-gray-800 mb-2">YouTube</h3>
                <p class="text-gray-600 mb-4">Regardez mes vidéos</p>
                <button class="px-4 py-2 bg-red-600 text-white rounded-lg hover:bg-red-700 transition">
                    S'abonner
                </button>
            </div>
        </div>
        
        <!-- Floating CTA -->
        <div class="bg-white rounded-xl shadow-lg p-6 max-w-2xl mx-auto floating">
            <h2 class="text-2xl font-bold text-gray-800 mb-4">Vous ne savez pas par où commencer ?</h2>
            <p class="text-gray-600 mb-6">Cliquez simplement sur l'une des plateformes ci-dessus pour être redirigé vers mon profil. À très vite !</p>
            <button onclick="showAllLinks()" class="px-6 py-3 bg-purple-600 text-white rounded-lg hover:bg-purple-700 transition font-medium">
                Voir tous les liens
            </button>
        </div>
    </div>
    
    <!-- Modal -->
    <div id="linksModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center hidden z-50 px-4">
        <div class="bg-white rounded-xl p-8 max-w-md w-full relative">
            <button onclick="closeModal()" class="absolute top-4 right-4 text-gray-500 hover:text-gray-700">
                <i class="fas fa-times text-xl"></i>
            </button>
            <h3 class="text-2xl font-bold text-gray-800 mb-6">Tous mes liens</h3>
            <div class="space-y-4">
                <div class="flex items-center p-3 border border-gray-200 rounded-lg hover:bg-gray-50 cursor-pointer" onclick="redirectTo('facebook')">
                    <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center mr-4">
                        <i class="fab fa-facebook-f text-blue-600"></i>
                    </div>
                    <span class="font-medium">Facebook</span>
                </div>
                <div class="flex items-center p-3 border border-gray-200 rounded-lg hover:bg-gray-50 cursor-pointer" onclick="redirectTo('tiktok')">
                    <div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center mr-4">
                        <i class="fab fa-tiktok text-black"></i>
                    </div>
                    <span class="font-medium">TikTok</span>
                </div>
                <div class="flex items-center p-3 border border-gray-200 rounded-lg hover:bg-gray-50 cursor-pointer" onclick="redirectTo('snapchat')">
                    <div class="w-10 h-10 rounded-full bg-yellow-100 flex items-center justify-center mr-4">
                        <i class="fab fa-snapchat-ghost text-yellow-500"></i>
                    </div>
                    <span class="font-medium">Snapchat</span>
                </div>
                <div class="flex items-center p-3 border border-gray-200 rounded-lg hover:bg-gray-50 cursor-pointer" onclick="redirectTo('instagram')">
                    <div class="w-10 h-10 rounded-full bg-gradient-to-r from-purple-500 via-pink-500 to-yellow-500 flex items-center justify-center mr-4">
                        <i class="fab fa-instagram text-white"></i>
                    </div>
                    <span class="font-medium">Instagram</span>
                </div>
                <div class="flex items-center p-3 border border-gray-200 rounded-lg hover:bg-gray-50 cursor-pointer" onclick="redirectTo('whatsapp')">
                    <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center mr-4">
                        <i class="fab fa-whatsapp text-green-600"></i>
                    </div>
                    <span class="font-medium">WhatsApp</span>
                </div>
                <div class="flex items-center p-3 border border-gray-200 rounded-lg hover:bg-gray-50 cursor-pointer" onclick="redirectTo('youtube')">
                    <div class="w-10 h-10 rounded-full bg-red-100 flex items-center justify-center mr-4">
                        <i class="fab fa-youtube text-red-600"></i>
                    </div>
                    <span class="font-medium">YouTube</span>
                </div>
            </div>
        </div>
    </div>
    
    <script>
        // Configuration des liens sociaux
        const socialLinks = {
            facebook: "https://www.facebook.com/adrien.sing",
            tiktok: "https://www.tiktok.com/@web.divertissement",
            snapchat: "https://www.snapchat.com/add/webgenius7910", 
            whatsapp: "https://wa.me/983562679", // Format international sans +
            instagram: "https://www.instagram.com/web_trader01",
            youtube: "https://www.youtube.com/@WebGenius1?sub_confirmation=1"
        };

        // Vérification initiale des liens
        document.addEventListener('DOMContentLoaded', () => {
            for (const [platform, link] of Object.entries(socialLinks)) {
                if (!link || link.includes('example.com')) {
                    console.warn(`Attention: Lien ${platform} non configuré ou invalide`);
                }
            }
        });
        
        function redirectTo(platform) {
            try {
                const link = socialLinks[platform];
                if (!link) {
                    throw new Error('Lien non configuré');
                }
                
                // Vérification basique de l'URL
                if (!link.startsWith('http://') && !link.startsWith('https://')) {
                    throw new Error('Format de lien invalide');
                }
                
                window.open(link, '_blank', 'noopener,noreferrer');
            } catch (error) {
                console.error('Erreur de redirection:', error);
                alert(`Impossible de rediriger vers ${platform}: ${error.message}`);
            }
        }
        
        function showAllLinks() {
            document.getElementById('linksModal').classList.remove('hidden');
        }
        
        function closeModal() {
            document.getElementById('linksModal').classList.add('hidden');
        }
        
        // Fermer la modal en cliquant à l'extérieur
        document.getElementById('linksModal').addEventListener('click', function(e) {
            if (e.target === this) {
                closeModal();
            }
        });
    </script>

    <!-- Footer -->
    <footer class="mt-12 text-center text-gray-600">
        <div class="flex items-center justify-center space-x-4">
            <img src="https://www.japanfm.fr/wp-content/uploads/2024/03/luffy-chapeau-tenu-scaled.jpg" 
                 alt="Profile" class="w-10 h-10 rounded-full object-cover">
            <span>Créé par WebGenius</span>
        </div>
    </footer>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://deepsite.hf.co/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://deepsite.hf.co" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://deepsite.hf.co?remix=joinel/webcreator" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>