forked from shalonjovan/VidyaGyan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
187 lines (174 loc) · 9.33 KB
/
Copy pathtest.html
File metadata and controls
187 lines (174 loc) · 9.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VidyaGyan</title>
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<script src="translate.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f0f2f5;
}
/* Custom CSS for the Chatbot Button */
#chatbot-button {
position: fixed;
bottom: 50px;
right: 50px;
width: 90px;
height: 90px;
border-radius: 50%;
overflow: hidden;
box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
cursor: pointer;
transition: all 0.3s ease;
border: 3px solid #6366f1;
}
#chatbot-button:hover {
transform: scale(1.1);
box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}
#chatbot-button img {
width: 90%;
height: 90%;
object-fit: contain;
border-radius: 50%;
}
</style>
</head>
<body class="bg-gray-100">
<!-- Header Navigation Bar -->
<header class="relative z-20 w-full p-2 flex justify-between items-center text-white bg-gray-900">
<div class="flex items-center space-x-2">
<!-- Mobile Menu Button -->
<button id="menu-btn" class="text-white focus:outline-none md:hidden">
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
<!-- Logo and Site Name -->
<div class="flex items-center space-x-2">
<a href="index.html">
<img src="./assets/mainlogo.png" alt="VidyaGyan Logo" class="w-10 h-10">
</a>
<span class="text-3xl font-bold text-white">VidyaGyan</span>
</div>
</div>
<!-- Desktop Navigation Links -->
<nav class="hidden md:flex items-center space-x-4 text-base">
<a href="career_paths.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Career Paths</a>
<a href="roadmaps/roadmap.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Roadmaps</a>
<a href="colleges.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Colleges</a>
<a href="exams.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Exams</a>
<a href="resources.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Resources</a>
<a href="study_groups.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Study Groups</a>
<a href="scholarship.html"
class="text-white px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">Scholarships</a>
</nav>
<!-- Action Buttons (Home, Profile, and For You) -->
<div class="hidden md:flex items-center space-x-4">
<a href="home.html"
class="flex items-center space-x-2 text-white hover:text-gray-200 px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">
<!-- Home Icon -->
<img src="assets/home.png" alt="Home" class="w-8 h-8">
</a>
<a href="profile.html"
class="flex items-center space-x-2 text-white hover:text-gray-200 px-3 py-2 rounded-lg hover:bg-gray-800 transition-colors duration-200">
<!-- Profile Icon -->
<img src="assets/profile.jpg" alt="Profile" class="w-8 h-8">
</a>
<a href="foryou.html"
class="text-sm px-6 py-3 rounded-full border-2 border-blue-500 text-blue-500 hover:text-white hover:bg-blue-500 transition-colors duration-300">For You</a>
</div>
</header>
<!-- Chatbot Button -->
<a href="chat.html" id="chatbot-button" title="Chat with us!">
<img src="./assets/images/chat.jpeg" alt="Chatbot" />
</a>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-300 p-6 pt-10 mt-16">
<div class="container mx-auto grid grid-cols-1 md:grid-cols-5 gap-8">
<!-- Logo Column (spans full height) -->
<div class="col-span-1 flex justify-center items-center">
<img src="./assets/mainlogo.png" alt="VidyaGyan Logo" class="w-75 h-60">
</div>
<!-- VidyaGyan Info Column -->
<div class="col-span-1 flex flex-col">
<h3 class="text-white font-bold text-xl mb-2">VidyaGyan</h3>
<p class="text-gray-400 text-sm mb-6">Your all-in-one platform for academic and career guidance.</p>
<div class="mb-4">
<h4 class="text-white font-semibold text-lg mb-2">Blastorz</h4>
<div class="flex space-x-2 items-center mb-2">
<svg class="w-4 h-4 text-gray-400" fill="currentColor" viewBox="0 0 24 24">
<path d="M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z"/>
</svg>
<a href="mailto:team.blastorz@gmail.com" class="text-gray-400 hover:text-white text-sm transition-colors duration-200">
team.blastorz@gmail.com
</a>
</div>
<div class="flex space-x-2 items-center">
<svg class="w-4 h-4 text-gray-400" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/>
</svg>
<a href="members.html" class="text-gray-400 hover:text-white text-sm transition-colors duration-200">
Team Blastorz Info
</a>
</div>
</div>
</div>
<!-- Navigation Column -->
<div class="col-span-1">
<h4 class="text-white font-semibold text-lg mb-4">Navigation</h4>
<ul class="space-y-3">
<li><a href="home.html" class="text-gray-300 hover:text-white transition-colors duration-200">Home</a></li>
<li><a href="profile.html" class="text-gray-300 hover:text-white transition-colors duration-200">Profile</a></li>
<li><a href="foryou.html" class="text-gray-300 hover:text-white transition-colors duration-200">For You</a></li>
</ul>
</div>
<!-- Resources Column -->
<div class="col-span-1">
<h4 class="text-white font-semibold text-lg mb-4">Resources</h4>
<ul class="space-y-3">
<li><a href="colleges.html" class="text-gray-300 hover:text-white transition-colors duration-200">Colleges</a></li>
<li><a href="career_paths.html" class="text-gray-300 hover:text-white transition-colors duration-200">Career Paths</a></li>
<li><a href="roadmaps/roadmap.html" class="text-gray-300 hover:text-white transition-colors duration-200">Roadmaps</a></li>
<li><a href="exams.html" class="text-gray-300 hover:text-white transition-colors duration-200">Entrance Exams</a></li>
<li><a href="resources.html" class="text-gray-300 hover:text-white transition-colors duration-200">Study Materials</a></li>
<li><a href="scholarship.html" class="text-gray-300 hover:text-white transition-colors duration-200">Scholarships</a></li>
</ul>
</div>
<!-- Community & Account Column -->
<div class="col-span-1">
<h4 class="text-white font-semibold text-lg mb-4">Community & Account</h4>
<ul class="space-y-3">
<li><a href="login.html" class="text-gray-300 hover:text-white transition-colors duration-200">Login</a></li>
<li><a href="signup.html" class="text-gray-300 hover:text-white transition-colors duration-200">Sign Up</a></li>
<li><a href="study_groups.html" class="text-gray-300 hover:text-white transition-colors duration-200">Study Groups</a></li>
</ul>
</div>
</div>
<!-- Copyright -->
<div class="border-t border-gray-700 mt-6 pt-3 text-center">
<p class="text-gray-400 text-sm">
Copyright © 2025 - Team Blastorz 💥
</p>
</div>
</footer>
</body>
</html>