Jitsy009 commited on
Commit
a41526d
·
verified ·
1 Parent(s): 2821ede

undefined - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +206 -18
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Website Jbm
3
- emoji: 📊
4
- colorFrom: pink
5
- colorTo: red
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: website-jbm
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: gray
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,207 @@
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>Abhinav Kumar | Portfolio</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
+ <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
10
+ <script>
11
+ tailwind.config = {
12
+ theme: {
13
+ extend: {
14
+ colors: {
15
+ primary: '#2563eb',
16
+ secondary: '#8b5cf6',
17
+ dark: '#0f172a',
18
+ light: '#f8fafc'
19
+ },
20
+ fontFamily: {
21
+ 'sans': ['JetBrains Mono', 'monospace'],
22
+ 'mono': ['JetBrains Mono', 'monospace']
23
+ }
24
+ }
25
+ }
26
+ }
27
+ </script>
28
+ <style type="text/css">
29
+ @keyframes fadeIn {
30
+ from { opacity: 0; transform: translateY(20px); }
31
+ to { opacity: 1; transform: translateY(0); }
32
+ }
33
+
34
+ @keyframes float {
35
+ 0% { transform: translateY(0); }
36
+ 50% { transform: translateY(-12px); }
37
+ 100% { transform: translateY(0); }
38
+ }
39
+
40
+ .fade-in {
41
+ animation: fadeIn 0.8s ease-out forwards;
42
+ }
43
+
44
+ .float {
45
+ animation: float 4s ease-in-out infinite;
46
+ }
47
+
48
+ .card-hover {
49
+ transition: all 0.3s ease;
50
+ }
51
+
52
+ .card-hover:hover {
53
+ transform: translateY(-8px);
54
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
55
+ }
56
+ </style>
57
+ </head>
58
+ <body class="bg-gradient-to-br from-gray-900 to-dark font-mono text-light min-h-screen">
59
+ <!-- Navigation -->
60
+ <nav class="py-6 px-4 lg:px-8 backdrop-blur-lg bg-dark/70 sticky top-0 z-50">
61
+ <div class="container mx-auto flex justify-between items-center">
62
+ <a href="#" class="text-2xl font-bold bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">Abhinav Kumar</a>
63
+ <div class="flex space-x-6">
64
+ <a href="#about" class="text-light hover:text-primary transition-colors">About</a>
65
+ <a href="#links" class="text-light hover:text-primary transition-colors">Links</a>
66
+ </div>
67
+ </div>
68
+ </nav>
69
+
70
+ <!-- Hero Section -->
71
+ <section id="about" class="container mx-auto px-4 lg:px-8 py-16 md:py-24 flex flex-col lg:flex-row items-center justify-between gap-12">
72
+ <div class="lg:w-1/2 flex justify-center">
73
+ <div class="relative">
74
+ <div class="absolute inset-0 bg-gradient-to-r from-primary to-secondary rounded-full blur-2xl opacity-30 animate-pulse"></div>
75
+ <img src="https://cdn.glitch.global/5f96b627-6eea-408d-afe5-da809f7ea7b7/ak.png?v=1739507763340"
76
+ alt="Abhinav Kumar"
77
+ class="relative w-72 h-72 rounded-full object-cover border-4 border-dark ring-4 ring-white/10 ring-offset-2 ring-offset-dark float">
78
+ </div>
79
+ </div>
80
+
81
+ <div class="lg:w-1/2 fade-in mt-12 lg:mt-0">
82
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">Hi, I'm <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">Abhinav Kumar</span></h1>
83
+ <p class="text-xl text-gray-300 mb-10">Developer passionate about creating innovative solutions through technology</p>
84
+
85
+ <div class="space-y-4">
86
+ <div class="flex items-center">
87
+ <div class="w-8 h-8 rounded-full bg-primary flex items-center justify-center mr-4">
88
+ <i class="fa-solid fa-location-dot"></i>
89
+ </div>
90
+ <span>Based in India</span>
91
+ </div>
92
+ <div class="flex items-center">
93
+ <div class="w-8 h-8 rounded-full bg-secondary flex items-center justify-center mr-4">
94
+ <i class="fa-solid fa-code"></i>
95
+ </div>
96
+ <span>Full Stack Developer</span>
97
+ </div>
98
+ </div>
99
+ </div>
100
+ </section>
101
+
102
+ <!-- Links Section -->
103
+ <section id="links" class="container mx-auto px-4 lg:px-8 py-16 md:py-24">
104
+ <h2 class="text-3xl md:text-4xl font-bold text-center mb-20">Connect With Me</h2>
105
+
106
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-4xl mx-auto">
107
+ <!-- LinkedIn Card -->
108
+ <a href="https://www.linkedin.com/in/abhinav-kr007/" target="_blank" class="card-hover fade-in">
109
+ <div class="bg-dark border border-gray-800 rounded-xl p-8 h-full flex flex-col items-center text-center hover:border-primary/40 transition-colors">
110
+ <div class="w-16 h-16 rounded-lg bg-blue-900/30 flex items-center justify-center mb-6">
111
+ <img src="https://cdn.glitch.global/5f96b627-6eea-408d-afe5-da809f7ea7b7/LI-In-Bug.png?v=1739507927623" alt="LinkedIn" class="w-10">
112
+ </div>
113
+ <h3 class="text-xl font-semibold mb-4">LinkedIn Profile</h3>
114
+ <p class="text-gray-400 mb-6">Connect with me professionally and view my work experience and achievements</p>
115
+ <div class="mt-auto flex items-center text-primary font-medium">
116
+ <span>View Profile</span>
117
+ <i class="fa-solid fa-arrow-right ml-2"></i>
118
+ </div>
119
+ </div>
120
+ </a>
121
+
122
+ <!-- GitHub Card -->
123
+ <a href="https://github.com/Abhinav-Kumar012" target="_blank" class="card-hover fade-in" style="animation-delay: 0.2s;">
124
+ <div class="bg-dark border border-gray-800 rounded-xl p-8 h-full flex flex-col items-center text-center hover:border-primary/40 transition-colors">
125
+ <div class="w-16 h-16 rounded-lg bg-gray-900/30 flex items-center justify-center mb-6">
126
+ <img src="https://cdn.glitch.global/5f96b627-6eea-408d-afe5-da809f7ea7b7/github-mark.png?v=1739508491008" alt="GitHub" class="w-10">
127
+ </div>
128
+ <h3 class="text-xl font-semibold mb-4">GitHub Profile</h3>
129
+ <p class="text-gray-400 mb-6">Explore my coding projects, contributions, and repositories</p>
130
+ <div class="mt-auto flex items-center text-primary font-medium">
131
+ <span>View Profile</span>
132
+ <i class="fa-solid fa-arrow-right ml-2"></i>
133
+ </div>
134
+ </div>
135
+ </a>
136
+
137
+ <!-- Resume Card -->
138
+ <a href="https://github.com/Abhinav-Kumar012/resume/releases/download/latest/Resume.pdf" target="_blank" class="card-hover fade-in" style="animation-delay: 0.4s;">
139
+ <div class="bg-dark border border-gray-800 rounded-xl p-8 h-full flex flex-col items-center text-center hover:border-primary/40 transition-colors">
140
+ <div class="w-16 h-16 rounded-lg bg-purple-900/30 flex items-center justify-center mb-6">
141
+ <i class="fa-regular fa-file-lines text-white text-2xl"></i>
142
+ </div>
143
+ <h3 class="text-xl font-semibold mb-4">My Resume</h3>
144
+ <p class="text-gray-400 mb-6">Download my detailed resume with qualifications and experience</p>
145
+ <div class="mt-auto flex items-center text-primary font-medium">
146
+ <span>Download CV</span>
147
+ <i class="fa-solid fa-download ml-2"></i>
148
+ </div>
149
+ </div>
150
+ </a>
151
+ </div>
152
+ </section>
153
+
154
+ <!-- Footer -->
155
+ <footer class="py-8 border-t border-gray-800 mt-auto">
156
+ <div class="container mx-auto px-4 lg:px-8">
157
+ <div class="flex flex-col md:flex-row items-center justify-between">
158
+ <div class="flex items-center mb-4 md:mb-0">
159
+ <div class="w-8 h-8 rounded-full bg-gradient-to-r from-primary to-secondary flex items-center justify-center mr-3">
160
+ <i class="fa-solid fa-a text-xs"></i>
161
+ </div>
162
+ <span class="text-lg font-bold">Abhinav Kumar</span>
163
+ </div>
164
+ <p class="text-gray-500 text-sm">© 2023 All rights reserved. Designed with ❤️</p>
165
+ </div>
166
+ </div>
167
+ </footer>
168
+
169
+ <!-- Back to top button -->
170
+ <button id="backToTop" class="fixed bottom-8 right-8 w-12 h-12 bg-primary rounded-full flex items-center justify-center text-white shadow-lg transition-opacity opacity-0 invisible">
171
+ <i class="fa-solid fa-arrow-up"></i>
172
+ </button>
173
+
174
+ <script>
175
+ // Back to top button functionality
176
+ const backToTopButton = document.getElementById('backToTop');
177
+
178
+ window.addEventListener('scroll', () => {
179
+ if (window.scrollY > 300) {
180
+ backToTopButton.classList.remove('opacity-0', 'invisible');
181
+ backToTopButton.classList.add('opacity-100');
182
+ } else {
183
+ backToTopButton.classList.remove('opacity-100');
184
+ backToTopButton.classList.add('opacity-0', 'invisible');
185
+ }
186
+ });
187
+
188
+ backToTopButton.addEventListener('click', () => {
189
+ window.scrollTo({
190
+ top: 0,
191
+ behavior: 'smooth'
192
+ });
193
+ });
194
+
195
+ // Smooth scrolling for anchor links
196
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
197
+ anchor.addEventListener('click', function (e) {
198
+ e.preventDefault();
199
+
200
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
201
+ behavior: 'smooth'
202
+ });
203
+ });
204
+ });
205
+ </script>
206
+ <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=Jitsy009/website-jbm" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
207
  </html>
prompts.txt ADDED
File without changes