-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
319 lines (298 loc) · 10.9 KB
/
index.html
File metadata and controls
319 lines (298 loc) · 10.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BRAX Projects</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<!-- Google tag (gtag.js) for Brax -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S0FR0BDJS1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-S0FR0BDJS1');
</script>
<meta name="description" content="BRAX for BRAC University is an online suite of webapps intended for academic usage by students, faculty, staff and anyone else interested." />
<meta name="keywords" content="BRAX projects, brax projects, bracu brax, bracu tools, brac university, brac university tools, brax3 vercel app, braxapp.github.io, brax3, brax" />
<meta name="author" content="Dewan Mukto" />
<meta property="og:title" content="BRAX Suite" />
<meta property="og:description" content="BRAX for BRAC University is an online suite of webapps intended for academic usage by students, faculty, staff and non-members." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://braxapp.github.io" />
<meta property="og:image" content="https://i.ytimg.com/vi/VFS9KTE28rw/maxresdefault.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="BRAX Academic Suite" />
<meta name="twitter:description" content="Free, mobile-friendly CV/resume builder with PDF export." />
<meta name="twitter:image" content="https://i.ytimg.com/vi/VFS9KTE28rw/maxresdefault.jpg" />
<meta name="twitter:site" content="@DEWAN_MUKTO" />
<link rel="canonical" href="https://braxapp.github.io/" />
<meta name="robots" content="index, follow" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "MizuCV",
"url": "https://braxapp.github.io/",
"logo": "https://www.bracu.ac.bd/sites/all/themes/sloth/images/f-logo.svg",
"description": "BRAX for BRAC University is an online suite of webapps intended for academic usage by students, faculty, staff and non-members.",
"applicationCategory": "Academic",
"operatingSystem": "Any",
"creator": {
"@type": "Person",
"name": "Dewan Mukto"
}
}
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<style>
:root {
--bg: #0f172a;
--card: rgba(30, 41, 59, 0.9);
--text: #f8fafc;
--muted: #cbd5e1;
--blue: #3b82f6;
--orange: #f97316;
--red: #ef4444;
}
body {
margin: 0;
font-family: 'Open Sans', system-ui, sans-serif;
background: var(--bg);
color: var(--text);
padding: 2rem;
}
h1 {
text-align: center;
margin-bottom: 2rem;
font-family: 'Orbitron', sans-serif;
font-size: 2rem;
}
h1 span {
background: linear-gradient(270deg, #ff0080, #7928ca, #2afadf, #ff8c00);
background-size: 600% 600%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
perspective: 1500px;
}
.card {
background: var(--card);
border-radius: 1rem;
padding: 1.5rem;
display: flex;
flex-direction: column;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
transform-style: preserve-3d;
transition: transform 0.8s;
cursor: pointer;
border: 2px solid transparent;
background-clip: padding-box;
animation: holoBorder 5s linear infinite;
}
@keyframes holoBorder {
0% { border-image: linear-gradient(45deg, #ff0080, #00f0ff, #ff8c00) 1; }
50% { border-image: linear-gradient(135deg, #00f0ff, #ff8c00, #ff0080) 1; }
100% { border-image: linear-gradient(225deg, #ff8c00, #ff0080, #00f0ff) 1; }
}
.card-front, .card-back {
backface-visibility: hidden;
display: flex;
flex-direction: column;
}
.card-front {
z-index: 2;
}
.card-back {
transform: rotateY(180deg);
justify-content: center;
align-items: center;
font-family: 'Orbitron', sans-serif;
font-size: 1.5rem;
color: var(--text);
}
.card.flipped {
transform: rotateY(180deg);
}
.card:hover {
transform: translateY(-4px) rotateY(10deg) rotateX(5deg);
}
.card img {
width: 100%;
border-radius: 0.75rem;
margin-bottom: 1rem;
object-fit: cover;
}
.title-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.75rem;
}
.title {
font-size: 1.25rem;
font-weight: 600;
font-family: 'Orbitron', sans-serif;
}
.tag {
font-size: 0.8rem;
font-weight: 500;
padding: 0.2rem 0.6rem;
border-radius: 9999px;
color: white;
white-space: nowrap;
font-family: 'Open Sans', sans-serif;
}
.tag.new { background: var(--blue); }
.tag.trending { background: var(--orange); }
.tag.unstable { background: var(--red); }
.desc {
flex-grow: 1;
font-size: 0.95rem;
color: var(--muted);
margin-bottom: 1rem;
font-family: 'Open Sans', sans-serif;
}
.btn {
display: block;
text-align: center;
background: var(--blue);
color: white;
padding: 0.75rem;
border-radius: 0.75rem;
text-decoration: none;
font-weight: 600;
font-family: 'Open Sans', sans-serif;
transition: background 0.2s ease;
}
.btn:hover {
background: #2563eb;
}
.platforms {
display: flex;
gap: 0.5rem;
margin: 0.5rem 0;
font-size: 1.2rem;
}
.platforms i.green { color: #22c55e; } /* Tailwind green-500 */
.platforms i.blue { color: #3b82f6; } /* Tailwind blue-500 */
</style>
</head>
<body>
<h1>Welcome to <span>BRAX</span></h1> <!-- Version 2025-09-29 01 -->
<style>
.floating-pill{
position:fixed;
z-index:99999; /* ensure above all */
bottom:1rem;
display:flex;align-items:center;
gap:0.5rem;
padding:0.5rem 1rem;
border-radius:9999px;
background:rgba(255,255,255,0.15);
backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
color:#fff;font-family:sans-serif;
font-size:clamp(0.75rem,1.8vw,0.9rem);
cursor:pointer;
box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.25);
transition:transform .2s;
text-decoration: none;
}
.floating-pill:hover{transform:translateY(-0.125rem);}
.left-pill{left:1rem;}
.right-pill{right:1rem;}
.floating-pill i{font-size:clamp(0.85rem,2vw,1rem);}
</style>
<a class="floating-pill left-pill" href="https://www.youtube.com/watch?v=QebfPkPQZko" target="_blank" rel="noopener">
<i class="fa-brands fa-youtube"></i><span>Watch how to use</span>
</a>
<a class="floating-pill right-pill" href="https://www.instagram.com/dewanmukto" target="_blank" rel="noopener">
<i class="fa-brands fa-instagram"></i><span>Visit the creator</span>
</a>
<div class="grid" id="cards"></div>
<img src="https://canarytokens.com/stuff/tags/images/t9xcw8b2h3anx3ewawcfkmwf7/submit.aspx" width="0px" height="0px" />
<script>
async function loadCards() {
const res = await fetch("sources.json");
const data = await res.json();
const container = document.getElementById("cards");
data.forEach((item, idx) => {
const card = document.createElement("div");
card.className = "card";
card.style.animation = `fadeSpin 1s ease forwards ${idx * 0.3}s`;
const front = document.createElement("div");
front.className = "card-front";
const img = document.createElement("img");
img.src = item.photo;
img.alt = item.title;
front.appendChild(img);
const titleRow = document.createElement("div");
titleRow.className = "title-row";
const title = document.createElement("div");
title.className = "title";
title.textContent = item.title;
titleRow.appendChild(title);
if (item.tag) {
const tag = document.createElement("span");
tag.className = "tag";
if (item.tag.toLowerCase().includes("new")) tag.classList.add("new");
else if (item.tag.toLowerCase().includes("trending")) tag.classList.add("trending");
else if (item.tag.toLowerCase().includes("unstable")) tag.classList.add("unstable");
tag.textContent = item.tag;
titleRow.appendChild(tag);
}
front.appendChild(titleRow);
const desc = document.createElement("div");
desc.className = "desc";
desc.textContent = item.desc;
front.appendChild(desc);
// Add platform icons span
const platforms = document.createElement("div");
platforms.className = "platforms";
if (item.mobile === true) {
platforms.innerHTML = `
<i class="fa-solid fa-mobile-screen-button green"></i>
<i class="fa-solid fa-laptop green"></i>
<i class="fa-solid fa-desktop green"></i>
`;
} else {
platforms.innerHTML = `
<i class="fa-solid fa-laptop blue"></i>
<i class="fa-solid fa-desktop blue"></i>
`;
}
front.appendChild(platforms);
const btn = document.createElement("a");
btn.className = "btn";
btn.href = item.url;
btn.target = "_blank";
btn.textContent = "Visit";
front.appendChild(btn);
const back = document.createElement("div");
back.className = "card-back";
back.textContent = "BRAX";
card.appendChild(front);
card.appendChild(back);
card.addEventListener("click", () => {
card.classList.toggle("flipped");
});
container.appendChild(card);
});
}
loadCards();
</script>
<style>body{margin:0;overflow:hidden}#intro{position:fixed;top:0;left:0;width:100vw;height:100vh;background:black;display:flex;justify-content:center;align-items:center;z-index:9999;opacity:1;animation:fadeOut .5s ease-in-out forwards;animation-delay:0.5s}#intro img{width:150px;animation:pulse 1s infinite}@keyframes pulse{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.01);opacity:.7}}@keyframes fadeOut{from{opacity:1}to{opacity:0;visibility:hidden}}</style><div id="intro"><img src="https://dewanmukto.github.io/asset/images/classic_logo.png" alt="Logo"></div><script>document.getElementById("intro").addEventListener("animationend",()=>{document.getElementById("intro").style.display="none";document.body.style.overflow="auto"});</script>
</body>
</html>