-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexmeme.html
146 lines (101 loc) · 4.77 KB
/
indexmeme.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-E52RM94N23"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-E52RM94N23');
</script>
<link rel="icon" type="image/x-icon" href="emb.jpeg">
<meta name="viewport" content="with=device-width, initial-scale=1.0">
<title>prabal's nest</title>
<link rel="stylesheet" href="stylecc2.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<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:[email protected]&display=swap" rel="stylesheet">
</head>
<body>
<section class="header">
<nav>
<div class="nav-links" id="navLinks">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="https://github.com/PrabalMinotra" target="_blank" rel="noopener noreferrer">GitHub</a>
</li>
<li><a href="resume_prabal_jan.pdf" target="_blank" rel="noopener noreferrer">Resume</a>
</li>
<li><a href="https://www.linkedin.com/in/prabal-minotra-72352b252/" target="_blank"
rel="noopener noreferrer">LinkedIn</a></li>
<li><a href="mks.html">MKS</a></li>
<!-- <li><a href="indexmeme.html">Me</a></li> -->
</ul>
</div>
</nav>
<div class="text-box">
<!-- <img src="Group 1.jpg"> -->
<h1>My <b>Projects</b></h1>
<br>
<br>
<p>
<b>HealMe Pharmaceutical Marketplace </b>
<br>
<b><a href="https://github.com/arhaanb/dbms-project" target="_blank" rel="noopener noreferrer">GitHub
></a></b>
<br>
A comprehensive online medicinal marketplace application developed using Vue, JavaScript, and
TypeScript, featuring 15+ functionalities, integrated SQL queries, and a MySQL database.
<br>
<br>
<b>Vipriya: Music-Based Dating Platform </b> <br>
<b><a href="https://github.com/arhaanb/vipriya" target="_blank" rel="noopener noreferrer">GitHub
></a></b>
<b><a href="https://youtu.be/81eX0Jx9L6Q?si=evIi_1_3Wlcam34y" target="_blank"
rel="noopener noreferrer">Youtube
></a></b>
<br>
Developed a cross-platform dating app in React Native leveraging the Spotify API
for personalised music analysis and partner suggestion using the Sørensen–Dice coefficient,
enhancing
compatibility by
considering common interests and complementary traits.
<br>
<br>
<b>We Are: VR-based Therapy </b>
<br><b><a href="posterWEARE.pdf" target="_blank" rel="noopener noreferrer">Outline
></a></b>
<b><a href="https://www.youtube.com/shorts/Y2WtvGCkF7g" target="_blank"
rel="noopener noreferrer">YouTube
></a></b>
<br>
Developed a virtual reality psychotherapy application providing hyper-realistic,
personalised,
cost-effective, and accessible mental health support.
Built in Unity3D using XR plugins and Oculus libraries, leveraging advanced ML
through OpenAI APIs for
response generation, speech-to-text and text-to-speech conversion.
<br>
<br>
For more projects view <a href="resumeJuly3.pdf" target="_blank" rel="noopener noreferrer">Resume</a>
</p>
</div>
</section>
<footer class="footer">
<h4>©<span id="currentYear"></span> Prabal Minotra</h4>
</footer>
<script>
var navLinks = document.getElementById("navLinks");
function showMenu() {
navLinks.style.left = "0";
}
function hideMenu() {
navLinks.style.left = "-100%";
}
// Set current year in footer
document.getElementById('currentYear').textContent = new Date().getFullYear();
</script>
</body>
</html>