Harvinderkno commited on
Commit
e789b43
·
verified ·
1 Parent(s): 4d9e7c8

# Detailed Prompt for "Link In Bio" Website ## General Objective Create a modern, visually appealing “Link In Bio” website that acts as a central hub for all my online profiles, projects, and key links. The site should be optimized for mobile devices, easy to navigate, and allow quick access to all important links. --- ## Key Sections & Features ### 1. Header / Profile - Display a profile photo (circular frame), name, and short bio/description. - Optionally, include a background image or color accent. ### 2. Links List - Prominently display a list of customizable buttons or cards, each linking to a specific destination. - Example links: Instagram, Twitter/X, LinkedIn, Personal Website, Portfolio, Blog, YouTube, TikTok, Store, Contact Email. - Each link should have: icon, label, and optional description. ### 3. Featured Content - Section to highlight recent work (post, video, product, article, etc.) - Use thumbnails and brief descriptions. ### 4. About Section (optional) - Short paragraph about who I am, what I do, and interests. ### 5. Contact - Display contact email or a simple contact form. - Optionally, include links to direct messaging apps (WhatsApp, Telegram, etc.). ### 6. Social Media Icons - Row or grid of social icons for quick access. ### 7. Footer - Copyright notice. - Privacy Policy and Terms links (if needed). - “Powered By” or credits. --- ## Design Preferences - Clean, minimalist style. - Bright, inviting colors (pastel or brand colors). - Rounded corners and subtle shadows for depth. - Responsive design: looks good and functions well on mobile and desktop. - Easy to update/add/remove links. --- ## Technical Requirements - Fast loading time. - SEO-friendly meta tags. - Accessibility: alt tags for images, high contrast, readable fonts. - Option for site owner to update links/content easily (admin panel or simple CMS). --- ## Example Structure ``` - Header: Profile Image | Name | Bio - Links: Instagram | Twitter | Blog | Portfolio | Email - Featured: Latest Post | Recent Video - About: Short Description - Contact: Email | WhatsApp - Footer: Copyright | Privacy | Powered By ``` --- ## Optional Extras - Analytics integration (track link clicks) - Ability to add temporary/featured links (“New!” or “Limited Time” badges) - Dark mode toggle - Animated transitions when navigating or clicking links --- **End goal:** A shareable, professional, and personal landing page that makes it easy for visitors to find and connect with me across all my platforms. - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +275 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Bio
3
- emoji: 👁
4
- colorFrom: indigo
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: bio
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,275 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>My Links | Connect With Me</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <meta name="description" content="Connect with me across all platforms - social media, portfolio, blog and more">
10
+ <style>
11
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
12
+
13
+ body {
14
+ font-family: 'Inter', sans-serif;
15
+ background-color: #f9fafb;
16
+ transition: all 0.3s ease;
17
+ }
18
+
19
+ .dark {
20
+ background-color: #111827;
21
+ color: #f3f4f6;
22
+ }
23
+
24
+ .dark .link-card {
25
+ background-color: #1f2937;
26
+ border-color: #374151;
27
+ }
28
+
29
+ .dark .profile-section {
30
+ background-color: #1f2937;
31
+ }
32
+
33
+ .dark .feature-card {
34
+ background-color: #1f2937;
35
+ border-color: #374151;
36
+ }
37
+
38
+ .link-card:hover {
39
+ transform: translateY(-3px);
40
+ }
41
+
42
+ .profile-image {
43
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
44
+ }
45
+
46
+ .theme-toggle {
47
+ transition: all 0.3s ease;
48
+ }
49
+
50
+ .theme-toggle:hover {
51
+ transform: rotate(30deg);
52
+ }
53
+ </style>
54
+ </head>
55
+ <body class="min-h-screen">
56
+ <div class="container mx-auto px-4 py-8 max-w-2xl">
57
+ <!-- Header/Profile Section -->
58
+ <header class="profile-section bg-white rounded-xl p-6 mb-6 text-center shadow-sm border border-gray-100">
59
+ <div class="flex justify-center mb-4">
60
+ <img src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=200&q=80"
61
+ alt="Profile photo"
62
+ class="profile-image w-24 h-24 rounded-full object-cover border-4 border-indigo-100">
63
+ </div>
64
+ <h1 class="text-2xl font-bold text-gray-800 dark:text-white">Jane Doe</h1>
65
+ <p class="text-gray-600 dark:text-gray-300 mt-2">Digital Creator | Web Developer | Coffee Enthusiast</p>
66
+
67
+ <div class="flex justify-center mt-4">
68
+ <button id="themeToggle" class="theme-toggle bg-indigo-100 dark:bg-gray-700 p-2 rounded-full text-indigo-600 dark:text-yellow-300">
69
+ <i class="fas fa-moon dark:hidden"></i>
70
+ <i class="fas fa-sun hidden dark:block"></i>
71
+ </button>
72
+ </div>
73
+ </header>
74
+
75
+ <!-- Links Section -->
76
+ <section class="mb-8">
77
+ <h2 class="text-xl font-semibold text-gray-700 dark:text-gray-200 mb-4">Connect With Me</h2>
78
+ <div class="space-y-3">
79
+ <!-- Link 1 -->
80
+ <a href="https://instagram.com" target="_blank" class="link-card block bg-white rounded-lg p-4 shadow-sm border border-gray-200 transition-all duration-200 hover:shadow-md">
81
+ <div class="flex items-center">
82
+ <div class="bg-pink-100 p-3 rounded-lg mr-4">
83
+ <i class="fab fa-instagram text-pink-600 text-xl"></i>
84
+ </div>
85
+ <div>
86
+ <h3 class="font-medium text-gray-800 dark:text-white">Instagram</h3>
87
+ <p class="text-sm text-gray-500 dark:text-gray-400">Follow me for daily updates</p>
88
+ </div>
89
+ </div>
90
+ </a>
91
+
92
+ <!-- Link 2 -->
93
+ <a href="https://twitter.com" target="_blank" class="link-card block bg-white rounded-lg p-4 shadow-sm border border-gray-200 transition-all duration-200 hover:shadow-md">
94
+ <div class="flex items-center">
95
+ <div class="bg-blue-100 p-3 rounded-lg mr-4">
96
+ <i class="fab fa-twitter text-blue-500 text-xl"></i>
97
+ </div>
98
+ <div>
99
+ <h3 class="font-medium text-gray-800 dark:text-white">Twitter/X</h3>
100
+ <p class="text-sm text-gray-500 dark:text-gray-400">Thoughts and conversations</p>
101
+ </div>
102
+ </div>
103
+ </a>
104
+
105
+ <!-- Link 3 -->
106
+ <a href="https://linkedin.com" target="_blank" class="link-card block bg-white rounded-lg p-4 shadow-sm border border-gray-200 transition-all duration-200 hover:shadow-md">
107
+ <div class="flex items-center">
108
+ <div class="bg-blue-100 p-3 rounded-lg mr-4">
109
+ <i class="fab fa-linkedin-in text-blue-700 text-xl"></i>
110
+ </div>
111
+ <div>
112
+ <h3 class="font-medium text-gray-800 dark:text-white">LinkedIn</h3>
113
+ <p class="text-sm text-gray-500 dark:text-gray-400">Professional profile</p>
114
+ </div>
115
+ </div>
116
+ </a>
117
+
118
+ <!-- Link 4 -->
119
+ <a href="https://example.com" target="_blank" class="link-card block bg-white rounded-lg p-4 shadow-sm border border-gray-200 transition-all duration-200 hover:shadow-md">
120
+ <div class="flex items-center">
121
+ <div class="bg-indigo-100 p-3 rounded-lg mr-4">
122
+ <i class="fas fa-globe text-indigo-600 text-xl"></i>
123
+ </div>
124
+ <div>
125
+ <h3 class="font-medium text-gray-800 dark:text-white">Personal Website</h3>
126
+ <p class="text-sm text-gray-500 dark:text-gray-400">Portfolio and blog</p>
127
+ </div>
128
+ </div>
129
+ </a>
130
+
131
+ <!-- Link 5 -->
132
+ <a href="mailto:hello@example.com" class="link-card block bg-white rounded-lg p-4 shadow-sm border border-gray-200 transition-all duration-200 hover:shadow-md">
133
+ <div class="flex items-center">
134
+ <div class="bg-red-100 p-3 rounded-lg mr-4">
135
+ <i class="fas fa-envelope text-red-500 text-xl"></i>
136
+ </div>
137
+ <div>
138
+ <h3 class="font-medium text-gray-800 dark:text-white">Email Me</h3>
139
+ <p class="text-sm text-gray-500 dark:text-gray-400">hello@example.com</p>
140
+ </div>
141
+ </div>
142
+ </a>
143
+ </div>
144
+ </section>
145
+
146
+ <!-- Featured Content -->
147
+ <section class="mb-8">
148
+ <h2 class="text-xl font-semibold text-gray-700 dark:text-gray-200 mb-4">Featured Content</h2>
149
+ <div class="grid md:grid-cols-2 gap-4">
150
+ <!-- Featured 1 -->
151
+ <div class="feature-card bg-white rounded-lg p-4 shadow-sm border border-gray-200">
152
+ <img src="https://images.unsplash.com/photo-1547658719-da2b51169166?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=400&q=80"
153
+ alt="Latest blog post"
154
+ class="rounded-lg mb-3 w-full h-32 object-cover">
155
+ <h3 class="font-medium text-gray-800 dark:text-white">Latest Blog Post</h3>
156
+ <p class="text-sm text-gray-500 dark:text-gray-400 mb-2">My journey into web development</p>
157
+ <a href="#" class="text-indigo-600 dark:text-indigo-400 text-sm font-medium">Read now →</a>
158
+ </div>
159
+
160
+ <!-- Featured 2 -->
161
+ <div class="feature-card bg-white rounded-lg p-4 shadow-sm border border-gray-200">
162
+ <img src="https://images.unsplash.com/photo-1574717024453-354f3986f108?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=400&q=80"
163
+ alt="YouTube video"
164
+ class="rounded-lg mb-3 w-full h-32 object-cover">
165
+ <h3 class="font-medium text-gray-800 dark:text-white">New YouTube Video</h3>
166
+ <p class="text-sm text-gray-500 dark:text-gray-400 mb-2">CSS tips for beginners</p>
167
+ <a href="#" class="text-indigo-600 dark:text-indigo-400 text-sm font-medium">Watch now →</a>
168
+ </div>
169
+ </div>
170
+ </section>
171
+
172
+ <!-- About Section -->
173
+ <section class="mb-8">
174
+ <h2 class="text-xl font-semibold text-gray-700 dark:text-gray-200 mb-4">About Me</h2>
175
+ <div class="bg-white dark:bg-gray-800 rounded-lg p-6 shadow-sm border border-gray-200 dark:border-gray-700">
176
+ <p class="text-gray-600 dark:text-gray-300 mb-4">
177
+ Hi there! I'm Jane, a passionate web developer and digital creator based in San Francisco.
178
+ I love building beautiful, functional websites and sharing my knowledge with others.
179
+ </p>
180
+ <p class="text-gray-600 dark:text-gray-300">
181
+ When I'm not coding, you can find me hiking, reading sci-fi novels, or experimenting with new coffee brewing methods.
182
+ </p>
183
+ </div>
184
+ </section>
185
+
186
+ <!-- Contact Section -->
187
+ <section class="mb-8">
188
+ <h2 class="text-xl font-semibold text-gray-700 dark:text-gray-200 mb-4">Get In Touch</h2>
189
+ <div class="bg-white dark:bg-gray-800 rounded-lg p-6 shadow-sm border border-gray-200 dark:border-gray-700">
190
+ <form>
191
+ <div class="mb-4">
192
+ <label for="name" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Name</label>
193
+ <input type="text" id="name" class="w-full px-3 py-2 border border-gray-300 dark:border-gray-600 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 dark:bg-gray-700 dark:text-white">
194
+ </div>
195
+ <div class="mb-4">
196
+ <label for="email" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Email</label>
197
+ <input type="email" id="email" class="w-full px-3 py-2 border border-gray-300 dark:border-gray-600 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 dark:bg-gray-700 dark:text-white">
198
+ </div>
199
+ <div class="mb-4">
200
+ <label for="message" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Message</label>
201
+ <textarea id="message" rows="3" class="w-full px-3 py-2 border border-gray-300 dark:border-gray-600 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 dark:bg-gray-700 dark:text-white"></textarea>
202
+ </div>
203
+ <button type="submit" class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-2 px-4 rounded-md transition duration-200">
204
+ Send Message
205
+ </button>
206
+ </form>
207
+ </div>
208
+ </section>
209
+
210
+ <!-- Social Media Icons -->
211
+ <section class="mb-8">
212
+ <h2 class="text-xl font-semibold text-gray-700 dark:text-gray-200 mb-4">Find Me On</h2>
213
+ <div class="flex justify-center space-x-4">
214
+ <a href="#" class="bg-gray-100 dark:bg-gray-700 p-3 rounded-full text-gray-700 dark:text-gray-200 hover:bg-indigo-100 dark:hover:bg-indigo-900 transition">
215
+ <i class="fab fa-facebook-f"></i>
216
+ </a>
217
+ <a href="#" class="bg-gray-100 dark:bg-gray-700 p-3 rounded-full text-gray-700 dark:text-gray-200 hover:bg-blue-100 dark:hover:bg-blue-900 transition">
218
+ <i class="fab fa-twitter"></i>
219
+ </a>
220
+ <a href="#" class="bg-gray-100 dark:bg-gray-700 p-3 rounded-full text-gray-700 dark:text-gray-200 hover:bg-pink-100 dark:hover:bg-pink-900 transition">
221
+ <i class="fab fa-instagram"></i>
222
+ </a>
223
+ <a href="#" class="bg-gray-100 dark:bg-gray-700 p-3 rounded-full text-gray-700 dark:text-gray-200 hover:bg-blue-100 dark:hover:bg-blue-900 transition">
224
+ <i class="fab fa-linkedin-in"></i>
225
+ </a>
226
+ <a href="#" class="bg-gray-100 dark:bg-gray-700 p-3 rounded-full text-gray-700 dark:text-gray-200 hover:bg-red-100 dark:hover:bg-red-900 transition">
227
+ <i class="fab fa-youtube"></i>
228
+ </a>
229
+ </div>
230
+ </section>
231
+
232
+ <!-- Footer -->
233
+ <footer class="text-center text-gray-500 dark:text-gray-400 text-sm">
234
+ <p>© 2023 Jane Doe. All rights reserved.</p>
235
+ <div class="mt-2">
236
+ <a href="#" class="hover:text-indigo-600 dark:hover:text-indigo-400">Privacy Policy</a>
237
+ <span class="mx-2">•</span>
238
+ <a href="#" class="hover:text-indigo-600 dark:hover:text-indigo-400">Terms of Service</a>
239
+ </div>
240
+ <p class="mt-2">Made with ❤️</p>
241
+ </footer>
242
+ </div>
243
+
244
+ <script>
245
+ // Theme toggle functionality
246
+ const themeToggle = document.getElementById('themeToggle');
247
+ const html = document.documentElement;
248
+
249
+ // Check for saved user preference or use system preference
250
+ const savedTheme = localStorage.getItem('theme') ||
251
+ (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
252
+
253
+ // Apply the saved theme
254
+ if (savedTheme === 'dark') {
255
+ html.classList.add('dark');
256
+ }
257
+
258
+ // Toggle theme on button click
259
+ themeToggle.addEventListener('click', () => {
260
+ html.classList.toggle('dark');
261
+ const theme = html.classList.contains('dark') ? 'dark' : 'light';
262
+ localStorage.setItem('theme', theme);
263
+ });
264
+
265
+ // Track link clicks (simple version)
266
+ document.querySelectorAll('a').forEach(link => {
267
+ link.addEventListener('click', function() {
268
+ const linkText = this.innerText || this.querySelector('h3').innerText;
269
+ console.log(`Link clicked: ${linkText}`);
270
+ // In a real implementation, you would send this to analytics
271
+ });
272
+ });
273
+ </script>
274
+ <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=Harvinderkno/bio" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
275
+ </html>