File size: 9,532 Bytes
d9de757
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Connect With Me | Social Links</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, #1a1a2e, #16213e);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        .social-card {
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            position: relative;
        }
        
        .social-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .social-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 0.75rem;
        }
        
        .social-card:hover::before {
            opacity: 1;
        }
        
        .avatar {
            border: 3px solid rgba(255,255,255,0.2);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .avatar:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }
        
        .floating {
            animation: floating 6s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
    </style>
</head>
<body class="text-gray-100 flex items-center justify-center p-4">
    <div class="max-w-md w-full mx-auto">
        <div class="text-center mb-8">
            <div class="avatar w-24 h-24 rounded-full overflow-hidden mx-auto mb-4 border-4 border-indigo-500 floating">
                <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Profile" class="w-full h-full object-cover">
            </div>
            <h1 class="text-3xl font-bold mb-1">Sarah Johnson</h1>
            <p class="text-indigo-300 mb-4">Digital Creator & Web Developer</p>
            <p class="text-gray-400 max-w-md mx-auto">Connecting the dots between creativity and technology. Let's build something amazing together!</p>
        </div>
        
        <div class="space-y-4 mb-8">
            <div class="social-card bg-gradient-to-r from-indigo-500 to-purple-600 rounded-xl p-4 flex items-center cursor-pointer">
                <div class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4">
                    <i class="fab fa-twitter text-white text-xl"></i>
                </div>
                <div>
                    <h3 class="font-semibold">Twitter</h3>
                    <p class="text-xs text-indigo-100">Follow for daily tech insights</p>
                </div>
                <div class="ml-auto">
                    <i class="fas fa-arrow-right text-white"></i>
                </div>
            </div>
            
            <div class="social-card bg-gradient-to-r from-blue-500 to-blue-600 rounded-xl p-4 flex items-center cursor-pointer">
                <div class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4">
                    <i class="fab fa-linkedin-in text-white text-xl"></i>
                </div>
                <div>
                    <h3 class="font-semibold">LinkedIn</h3>
                    <p class="text-xs text-blue-100">Professional network</p>
                </div>
                <div class="ml-auto">
                    <i class="fas fa-arrow-right text-white"></i>
                </div>
            </div>
            
            <div class="social-card bg-gradient-to-r from-pink-500 to-rose-500 rounded-xl p-4 flex items-center cursor-pointer">
                <div class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4">
                    <i class="fab fa-instagram text-white text-xl"></i>
                </div>
                <div>
                    <h3 class="font-semibold">Instagram</h3>
                    <p class="text-xs text-pink-100">Behind-the-scenes content</p>
                </div>
                <div class="ml-auto">
                    <i class="fas fa-arrow-right text-white"></i>
                </div>
            </div>
            
            <div class="social-card bg-gradient-to-r from-green-500 to-emerald-500 rounded-xl p-4 flex items-center cursor-pointer">
                <div class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4">
                    <i class="fab fa-github text-white text-xl"></i>
                </div>
                <div>
                    <h3 class="font-semibold">GitHub</h3>
                    <p class="text-xs text-green-100">Open-source projects</p>
                </div>
                <div class="ml-auto">
                    <i class="fas fa-arrow-right text-white"></i>
                </div>
            </div>
            
            <div class="social-card bg-gradient-to-r from-yellow-500 to-amber-500 rounded-xl p-4 flex items-center cursor-pointer">
                <div class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4">
                    <i class="fas fa-envelope text-white text-xl"></i>
                </div>
                <div>
                    <h3 class="font-semibold">Email</h3>
                    <p class="text-xs text-yellow-100">Let's collaborate</p>
                </div>
                <div class="ml-auto">
                    <i class="fas fa-arrow-right text-white"></i>
                </div>
            </div>
        </div>
        
        <div class="text-center">
            <button class="bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-2 px-6 rounded-full transition-all duration-300 transform hover:scale-105 pulse">
                Join My Newsletter
            </button>
        </div>
        
        <div class="flex justify-center space-x-4 mt-8">
            <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-indigo-600 flex items-center justify-center transition-colors duration-300">
                <i class="fab fa-discord"></i>
            </a>
            <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-red-500 flex items-center justify-center transition-colors duration-300">
                <i class="fab fa-youtube"></i>
            </a>
            <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-blue-400 flex items-center justify-center transition-colors duration-300">
                <i class="fab fa-telegram"></i>
            </a>
            <a href="#" class="w-10 h-10 rounded-full bg-gray-800 hover:bg-purple-500 flex items-center justify-center transition-colors duration-300">
                <i class="fab fa-twitch"></i>
            </a>
        </div>
    </div>
    
    <script>
        // Add click functionality to social cards
        document.querySelectorAll('.social-card').forEach(card => {
            card.addEventListener('click', function() {
                // In a real implementation, this would redirect to the respective social media
                const platform = this.querySelector('h3').textContent;
                alert(`Redirecting to ${platform}... (This is a demo)`);
            });
        });
        
        // Newsletter button animation
        const newsletterBtn = document.querySelector('.pulse');
        newsletterBtn.addEventListener('mouseenter', () => {
            newsletterBtn.classList.remove('pulse');
        });
        
        newsletterBtn.addEventListener('mouseleave', () => {
            setTimeout(() => {
                newsletterBtn.classList.add('pulse');
            }, 100);
        });
    </script>
<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://enzostvs-deepsite.hf.space/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://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Hoof2/social-links" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>