-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
696 lines (655 loc) · 33.6 KB
/
index.html
File metadata and controls
696 lines (655 loc) · 33.6 KB
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Ananya Gupta - Full Stack Developer Portfolio. Showcasing web development projects, skills, and professional experience.">
<meta name="keywords"
content="web developer, portfolio, frontend developer, backend developer, full stack developer">
<meta name="author" content="Ananya Gupta">
<meta property="og:title" content="Ananya Gupta - Full Stack Developer">
<meta property="og:description" content="Portfolio website showcasing web development projects and skills">
<meta property="og:image" content="images/profile-image.jpg">
<meta property="og:url" content="https://your-portfolio-url.com">
<title>Ananya Gupta - Full Stack Developer</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<canvas id="background-canvas"></canvas>
<header>
<nav>
<ul>
<li><a href="#home" class="active">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#problem-solving">Problem Solving</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home" class="hero">
<div class="hero-container">
<div class="hero-content">
<div class="hero-badge">
<span class="status-dot"></span>
Available for opportunities
</div>
<h1>Hello, I'm <span>Ananya Gupta</span></h1>
<h2>Full Stack Developer</h2>
<p class="hero-tagline">
<span class="typing-text"></span>
<span class="typing-cursor">|</span>
</p>
<!-- Hero Stats -->
<div class="hero-stats">
<div class="stat-item">
<span class="stat-number">10+</span>
<span class="stat-label">Projects</span>
</div>
<div class="stat-divider"></div>
<div class="stat-item">
<span class="stat-number">15+</span>
<span class="stat-label">Technologies</span>
</div>
<div class="stat-divider"></div>
<div class="stat-item">
<span class="stat-number">B.Tech</span>
<span class="stat-label">CSE AI/ML</span>
</div>
</div>
<div class="hero-buttons">
<a href="#contact" class="btn primary">
<i class="fas fa-paper-plane"></i>
Get in Touch
</a>
<a href="#projects" class="btn secondary">
<i class="fas fa-code"></i>
View Projects
</a>
</div>
<div class="hero-scroll-indicator">
<span>Scroll to explore</span>
<div class="scroll-arrow">
<i class="fas fa-chevron-down"></i>
</div>
</div>
</div>
</div>
</section>
<section id="about" class="about-section">
<div class="about-container">
<div class="about-header">
<h2>About Me</h2>
</div>
<div class="about-grid">
<div class="about-image-wrapper">
<div class="about-image">
<img src="images/Ananya profile pic.jpeg" alt="Ananya Gupta">
<div class="image-overlay">
<div class="overlay-content">
<h3>Ananya Gupta</h3>
<p>Full Stack Developer</p>
</div>
</div>
</div>
</div>
<div class="about-content">
<div class="about-intro">
<div class="intro-text">
<span class="greeting">Hello!</span>
<h3>I'm Ananya Gupta</h3>
<p class="location"><i class="fas fa-map-marker-alt"></i> Faridabad, Haryana</p>
</div>
<p class="bio">Full-stack web developer with experience in React.js, Node.js, Python, MySQL, and
other web technologies. Contributed to open-source projects, including a note-sharing
platform, showcasing strong programming and problem-solving skills. Built full-stack
applications using the MERN stack, focusing on creating user-friendly and efficient
solutions.</p>
</div>
<div class="about-stats">
<div class="stat-item">
<i class="fas fa-code"></i>
<div class="stat-content">
<span class="stat-number">10+</span>
<span class="stat-label">Projects</span>
</div>
</div>
<div class="stat-item">
<i class="fas fa-graduation-cap"></i>
<div class="stat-content">
<span class="stat-number">B.Tech</span>
<span class="stat-label">CSE with AI/ML</span>
</div>
</div>
<div class="stat-item">
<i class="fas fa-certificate"></i>
<div class="stat-content">
<span class="stat-number">4+</span>
<span class="stat-label">Certifications</span>
</div>
</div>
</div>
<div class="about-details">
<div class="detail-card">
<h4><i class="fas fa-star"></i> What I Do</h4>
<ul>
<li>Full Stack Development</li>
<li>Frontend with React.js</li>
<li>Backend with Node.js</li>
<li>Database Design</li>
</ul>
</div>
<div class="detail-card">
<h4><i class="fas fa-users"></i> Activities</h4>
<ul>
<li>Event Management - NST-SDC</li>
<li>Open Source Contributor</li>
<li>Tech Event Organizer</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="skills" class="skills-section">
<div class="skills-container">
<h2>Professional Skillset</h2>
<div class="skills-content">
<div class="skill-category">
<h3>Programming Languages</h3>
<div class="skill-items">
<div class="skill-item">
<i class="fab fa-js"></i>
<span>JavaScript</span>
</div>
<div class="skill-item">
<i class="fab fa-python"></i>
<span>Python</span>
</div>
<div class="skill-item">
<i class="fas fa-code"></i>
<span>TypeScript</span>
</div>
<div class="skill-item">
<i class="fas fa-code"></i>
<span>C++</span>
</div>
<div class="skill-item">
<i class="fas fa-code"></i>
<span>C</span>
</div>
<div class="skill-item">
<i class="fab fa-java"></i>
<span>Java</span>
</div>
</div>
</div>
<div class="skill-category">
<h3>Frontend Development</h3>
<div class="skill-items">
<div class="skill-item">
<i class="fab fa-react"></i>
<span>React.js</span>
</div>
<div class="skill-item">
<i class="fab fa-html5"></i>
<span>HTML5</span>
</div>
<div class="skill-item">
<i class="fab fa-css3-alt"></i>
<span>CSS3</span>
</div>
<div class="skill-item">
<i class="fas fa-wind"></i>
<span>Tailwind</span>
</div>
</div>
</div>
<div class="skill-category">
<h3>Backend & Database</h3>
<div class="skill-items">
<div class="skill-item">
<i class="fab fa-node-js"></i>
<span>Node.js</span>
</div>
<div class="skill-item">
<i class="fas fa-server"></i>
<span>Express.js</span>
</div>
<div class="skill-item">
<i class="fas fa-database"></i>
<span>MongoDB</span>
</div>
<div class="skill-item">
<i class="fas fa-database"></i>
<span>MySQL</span>
</div>
<div class="skill-item">
<i class="fas fa-layer-group"></i>
<span>Prisma ORM</span>
</div>
<div class="skill-item">
<i class="fas fa-sitemap"></i>
<span>System Design</span>
</div>
</div>
</div>
<div class="skill-category">
<h3>Tools & Others</h3>
<div class="skill-items">
<div class="skill-item">
<i class="fab fa-git-alt"></i>
<span>Git</span>
</div>
<div class="skill-item">
<i class="fab fa-figma"></i>
<span>Figma</span>
</div>
<div class="skill-item">
<i class="fas fa-brain"></i>
<span>Generative AI</span>
</div>
<div class="skill-item">
<i class="fas fa-chart-bar"></i>
<span>NumPy/Pandas</span>
</div>
<div class="skill-item">
<i class="fas fa-robot"></i>
<span>AIML</span>
</div>
<div class="skill-item">
<i class="fas fa-chart-line"></i>
<span>Data Analytics (Excel/Sheets)</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Problem Solving & Open Source Section -->
<section id="problem-solving" class="problem-solving-section">
<div class="problem-solving-container">
<h2>Problem Solving & Open Source</h2>
<p class="section-subtitle">Demonstrating strong DSA skills and real-world coding through competitive
programming and open-source contributions.</p>
<div class="platforms-grid">
<!-- Codeforces Card -->
<div class="platform-card codeforces">
<div class="platform-icon">
<svg viewBox="0 0 24 24" fill="currentColor">
<path
d="M4.5 7.5C5.328 7.5 6 8.172 6 9v10.5c0 .828-.672 1.5-1.5 1.5h-3C.672 21 0 20.328 0 19.5V9c0-.828.672-1.5 1.5-1.5h3zm9-4.5c.828 0 1.5.672 1.5 1.5v15c0 .828-.672 1.5-1.5 1.5h-3c-.828 0-1.5-.672-1.5-1.5v-15c0-.828.672-1.5 1.5-1.5h3zm9 7.5c.828 0 1.5.672 1.5 1.5v7.5c0 .828-.672 1.5-1.5 1.5h-3c-.828 0-1.5-.672-1.5-1.5V12c0-.828.672-1.5 1.5-1.5h3z" />
</svg>
</div>
<h3>Codeforces</h3>
<ul class="platform-highlights">
<li>Active competitive programmer</li>
<li>Regular contest participation</li>
<li>Problem solving in C++</li>
</ul>
<a href="https://codeforces.com/profile/anya_code" target="_blank" rel="noopener noreferrer"
class="btn primary platform-btn">
View Profile
<i class="fas fa-external-link-alt"></i>
</a>
</div>
<!-- LeetCode Card -->
<div class="platform-card leetcode">
<div class="platform-icon">
<svg viewBox="0 0 24 24" fill="currentColor">
<path
d="M13.483 0a1.374 1.374 0 0 0-.961.438L7.116 6.226l-3.854 4.126a5.266 5.266 0 0 0-1.209 2.104 5.35 5.35 0 0 0-.125.513 5.527 5.527 0 0 0 .062 2.362 5.83 5.83 0 0 0 .349 1.017 5.938 5.938 0 0 0 1.271 1.818l4.277 4.193.039.038c2.248 2.165 5.852 2.133 8.063-.074l2.396-2.392c.54-.54.54-1.414.003-1.955a1.378 1.378 0 0 0-1.951-.003l-2.396 2.392a3.021 3.021 0 0 1-4.205.038l-.02-.019-4.276-4.193c-.652-.64-.972-1.469-.948-2.263a2.68 2.68 0 0 1 .066-.523 2.545 2.545 0 0 1 .619-1.164L9.13 8.114c1.058-1.134 3.204-1.27 4.43-.278l3.501 2.831c.593.48 1.461.387 1.94-.207a1.384 1.384 0 0 0-.207-1.943l-3.5-2.831c-.8-.647-1.766-1.045-2.774-1.202l2.015-2.158A1.384 1.384 0 0 0 13.483 0zm-2.866 12.815a1.38 1.38 0 0 0-1.38 1.382 1.38 1.38 0 0 0 1.38 1.382H20.79a1.38 1.38 0 0 0 1.38-1.382 1.38 1.38 0 0 0-1.38-1.382z" />
</svg>
</div>
<h3>LeetCode</h3>
<ul class="platform-highlights">
<li>DSA practice & problem solving</li>
<li>Array, String, DP patterns</li>
<li>Interview preparation focus</li>
</ul>
<a href="https://leetcode.com/u/anya_code/" target="_blank" rel="noopener noreferrer"
class="btn primary platform-btn">
View Profile
<i class="fas fa-external-link-alt"></i>
</a>
</div>
<!-- GitHub Card -->
<div class="platform-card github">
<div class="platform-icon">
<i class="fab fa-github"></i>
</div>
<h3>GitHub</h3>
<ul class="platform-highlights">
<li>Open-source contributions</li>
<li>Active project development</li>
<li>Collaborative coding</li>
</ul>
<a href="https://github.com/anya-xcode" target="_blank" rel="noopener noreferrer"
class="btn primary platform-btn">
View Profile
<i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
</div>
</section>
<section id="projects" class="projects-section">
<div class="projects-container">
<h2>My Projects</h2>
<hr>
<div class="projects-grid">
<!-- Project 1 - IPREP -->
<div class="project-card">
<div class="project-image">
<img src="https://iziltkracfdoszyngmmd.supabase.co/storage/v1/object/public/dropbox/files/n9kl0i"
alt="IPREP">
</div>
<div class="project-content">
<h3>IPREP</h3>
<p>An interview prep platform for Newton School of Technology students to share and learn from real interview experiences. Featuring moderation, AI-powered answer generation, and a real-time placement tracker.</p>
<div class="project-tech">
<span>React.js</span>
<span>Express.js</span>
<span>MongoDB</span>
<span>Prisma ORM</span>
<span>AI Integration</span>
</div>
<div class="project-links">
<a href="https://iprep-xi.vercel.app/" class="btn secondary">Live</a>
<a href="https://github.com/anya-xcode/IPREP" class="btn secondary">Source Code</a>
</div>
</div>
</div>
<!-- Project 2 - Solar Energy Forecasting -->
<div class="project-card">
<div class="project-image">
<img src="https://iziltkracfdoszyngmmd.supabase.co/storage/v1/object/public/dropbox/files/0zskr1"
alt="Solar Energy Forecasting">
</div>
<div class="project-content">
<h3>Solar Energy Forecasting & Agentic Grid Optimization</h3>
<p>An AI-driven system that predicts solar power generation using ML and employs an Agentic AI assistant for structured grid optimization recommendations and energy utilization strategies.</p>
<div class="project-tech">
<span>Python</span>
<span>Jupyter Notebook</span>
<span>RandomForest</span>
<span>Linear Regression</span>
<span>Streamlit</span>
</div>
<div class="project-links">
<a href="https://intelligent-solar-energy-generation-forecasting-78ssbnfr55sf6b.streamlit.app/" class="btn secondary">Live</a>
<a href="https://github.com/QUBITABHAY/Intelligent-Solar-Energy-Generation-Forecasting" class="btn secondary">Source Code</a>
</div>
</div>
</div>
<!-- Project 3 - Notes Sharing Platform -->
<div class="project-card">
<div class="project-image">
<img src="https://iziltkracfdoszyngmmd.supabase.co/storage/v1/object/public/dropbox/files/e6h3oq"
alt="Notes Sharing Platform">
</div>
<div class="project-content">
<h3>Notes Sharing Platform</h3>
<p>A collaborative web application for students to share, browse, and download academic notes
with secure authentication, category-based browsing, and real-time collaboration features
</p>
<div class="project-tech">
<span>React.js</span>
<span>Node.js</span>
<span>Express.js</span>
<span>MongoDB</span>
</div>
<div class="project-links">
<a href="https://notes-shaaring-platform.vercel.app/" class="btn secondary">Live</a>
<a href="https://github.com/nst-sdc/NotesShaaring-Platform" class="btn secondary">Source
Code</a>
</div>
</div>
</div>
<!-- Project 4 - Real Estate -->
<div class="project-card">
<div class="project-image">
<img src="https://iziltkracfdoszyngmmd.supabase.co/storage/v1/object/public/dropbox/files/pui6oy"
alt="Real Estate Platform">
</div>
<div class="project-content">
<h3>Real Estate Platform</h3>
<p>A full stack real estate platform enabling users to list, explore, and manage properties with
Google OAuth, map-based visualization, Cloudinary image storage, and loan EMI calculator</p>
<div class="project-tech">
<span>React.js</span>
<span>Node.js</span>
<span>Prisma ORM</span>
<span>MySQL</span>
</div>
<div class="project-links">
<a href="https://real-estate-qebn.vercel.app/" class="btn secondary">Live</a>
<a href="https://github.com/anya-xcode/Real-Estate" class="btn secondary">Source Code</a>
</div>
</div>
</div>
<!-- Project 5 - TOS E-Commerce -->
<div class="project-card hidden-project">
<div class="project-image">
<img src="https://iziltkracfdoszyngmmd.supabase.co/storage/v1/object/public/dropbox/files/3miom9"
alt="TOS E-Commerce">
</div>
<div class="project-content">
<h3>Total Office Solutions</h3>
<p>A full stack e-commerce web application with separate admin and user modules for office
products, featuring real-time updates, automated emails, and admin dashboard</p>
<div class="project-tech">
<span>React.js</span>
<span>Node.js</span>
<span>Express.js</span>
<span>MongoDB</span>
</div>
<div class="project-links">
<a href="https://tos-new.vercel.app/" class="btn secondary">Live</a>
<a href="https://github.com/anya-xcode/tos" class="btn secondary">Source Code</a>
</div>
</div>
</div>
<!-- Project 6 - Emoji Game -->
<div class="project-card hidden-project">
<div class="project-image">
<img src="https://iziltkracfdoszyngmmd.supabase.co/storage/v1/object/public/dropbox/files/micfo4"
alt="Emoji Game">
</div>
<div class="project-content">
<h3>Emoji Game</h3>
<p>Emoji Game is a fun and interactive game where users click on emojis to win points</p>
<div class="project-tech">
<span>React</span>
<span>HTML</span>
<span>CSS</span>
<span>Javascript</span>
</div>
<div class="project-links">
<a href="https://emoji-game-git-main-anya-xcodes-projects.vercel.app"
class="btn secondary">Live</a>
<a href="https://github.com/anya-xcode/Emoji-Game" class="btn secondary">Source Code</a>
</div>
</div>
</div>
<!-- Project 5 - ESSENCE (Hidden) -->
<div class="project-card hidden-project">
<div class="project-image">
<img src="https://iziltkracfdoszyngmmd.supabase.co/storage/v1/object/public/dropbox/files/qjarz2"
alt="ESSENCE">
</div>
<div class="project-content">
<h3>ESSENCE</h3>
<p>A Marriage Event Website is an online platform for managing wedding details, including
invitations, RSVPs, event schedules</p>
<div class="project-tech">
<span>Javascript</span>
<span>HTML</span>
<span>CSS</span>
</div>
<div class="project-links">
<a href="https://cheerful-jalebi-c14db7.netlify.app" class="btn secondary">Live</a>
<a href="https://github.com/anya-xcode/ESSENCE/tree/main/Love%20Story"
class="btn secondary">Source Code</a>
</div>
</div>
</div>
<!-- Project 6 - Food Court (Hidden) -->
<div class="project-card hidden-project">
<div class="project-image">
<img src="https://iziltkracfdoszyngmmd.supabase.co/storage/v1/object/public/dropbox/files/goq3gw"
alt="Food Court">
</div>
<div class="project-content">
<h3>Food Court</h3>
<p>A Restaurant Website is an online platform showcasing the restaurant's menu, location, hours,
reservations, and contact details, with features like online ordering</p>
<div class="project-tech">
<span>HTML</span>
<span>CSS</span>
</div>
<div class="project-links">
<a href="https://preeminent-eclair-5a8f9f.netlify.app" class="btn secondary">Live</a>
<a href="https://github.com/anya-xcode/food-court" class="btn secondary">Source Code</a>
</div>
</div>
</div>
<!-- Project 7 - My Tunes (Hidden) -->
<div class="project-card hidden-project">
<div class="project-image">
<img src="https://iziltkracfdoszyngmmd.supabase.co/storage/v1/object/public/dropbox/files/rzk12q"
alt="My Tunes">
</div>
<div class="project-content">
<h3>My Tunes</h3>
<p>A music streaming website is an online platform for listening to music, featuring a library
of songs, albums, playlists, and artist information, with features like search,
recommendations, and user profiles</p>
<div class="project-tech">
<span>HTML</span>
<span>CSS</span>
</div>
<div class="project-links">
<a href="https://frabjous-meerkat-c881ac.netlify.app" class="btn secondary">Live</a>
<a href="https://github.com/anya-xcode/music-webpqage" class="btn secondary">Source Code</a>
</div>
</div>
</div>
<!-- Project 8 - My Portfolio (Hidden) -->
<div class="project-card hidden-project">
<div class="project-image">
<img src="https://iziltkracfdoszyngmmd.supabase.co/storage/v1/object/public/dropbox/files/tmab4v"
alt="My Portfolio">
</div>
<div class="project-content">
<h3>My Portfolio</h3>
<p>My Portfolio is a personal website showcasing a developer's skills, projects, resume, and
contact details, with interactive elements</p>
<div class="project-tech">
<span>HTML</span>
<span>CSS</span>
<span>Javascript</span>
</div>
<div class="project-links">
<a href="https://portfolio-website-smoky-two.vercel.app/" class="btn secondary">Live</a>
<a href="https://github.com/anya-xcode/Portfolio-Website" class="btn secondary">Source
Code</a>
</div>
</div>
</div>
</div>
<div class="view-more-container">
<button id="view-more-btn" class="btn primary view-more-btn">
<span>View More Projects</span>
<i class="fas fa-chevron-down"></i>
</button>
</div>
</div>
</section>
<section id="contact" class="contact-section">
<div class="contact-container">
<h2>Get In Touch</h2>
<hr>
<div class="contact-content">
<!-- Email Contact -->
<div class="contact-card">
<div class="contact-icon">
<i class="fas fa-envelope"></i>
</div>
<div class="contact-info">
<h3>Email</h3>
<a href="mailto:ananya.gupta@adypu.edu.in">ananya.gupta@adypu.edu.in</a>
<p>Feel free to reach out anytime!</p>
</div>
</div>
<!-- LinkedIn Contact -->
<div class="contact-card">
<div class="contact-icon">
<i class="fab fa-linkedin-in"></i>
</div>
<div class="contact-info">
<h3>LinkedIn</h3>
<a href="https://www.linkedin.com/in/ananya-gupta-7235a5319/"
target="_blank">https://www.linkedin.com/in/ananya-gupta-7235a5319/</a>
<p>Let's connect professionally</p>
</div>
</div>
<!-- Location -->
<div class="contact-card">
<div class="contact-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="contact-info">
<h3>Location</h3>
<p>Newton School of Technology ,Pune</p>
<p>Maharashtra,India</p>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>Ananya Gupta</h3>
<p>Full Stack Developer</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#problem-solving">Problem Solving</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect With Me</h3>
<div class="social-links">
<a href="https://github.com/anya-xcode"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/ananya-gupta-7235a5319/"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/anya_xcode"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Ananya Gupta. All rights reserved.</p>
</div>
</footer>
<script src="js/background.js"></script>
<script src="js/cursor.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>