-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmembers_details.html
More file actions
317 lines (272 loc) · 14.3 KB
/
Copy pathmembers_details.html
File metadata and controls
317 lines (272 loc) · 14.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- tailwindcss -->
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<!-- favicon -->
<link rel="icon" type="image/x-icon" href="images/logo.png">
<!-- fontawesome -->
<script src="https://kit.fontawesome.com/25d8830708.js" crossorigin="anonymous"></script>
<!-- swiper js -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<style type="text/tailwindcss">
@theme {
--color-primary: #090D47;
--color-secondary: #FF6B6B;
--color-gray: #EDF1F3;
}
</style>
<title>BATC</title>
</head>
<body>
<!-- navigation bar -->
<header class="bg-primary text-white ">
<div class="max-w-7xl mx-auto flex items-center justify-between px-6 py-4">
<!-- Left: Toggle + Logo -->
<div class="flex items-center space-x-3">
<!-- Mobile toggle -->
<button id="menuToggle" class="lg:hidden focus:outline-none">
<!-- Hamburger Icon -->
<svg xmlns="http://www.w3.org/2000/svg" class="h-7 w-7 text-white" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
<!-- Logo -->
<img src="images/logo.png" alt="Logo" class="h-16 w-auto object-contain" />
</div>
<!-- Navigation (desktop) -->
<nav class="hidden lg:flex space-x-6 items-center">
<a href="index.html" class=" hover:text-secondary transition-colors duration-300">Home</a>
<a href="members.html" class="hover:text-secondary transition-colors duration-300">Members</a>
<a href="be_a_member.html" class="hover:text-secondary transition-colors duration-300">Be a Member</a>
<a href="events.html" class="hover:text-secondary transition-colors duration-300">Events</a>
<a href="gallery.html" class="hover:text-secondary transition-colors duration-300">Gallery</a>
<a href="about_us.html" class="hover:text-secondary transition-colors duration-300">About Us</a>
<a href="contact_us.html" class="hover:text-secondary transition-colors duration-300">Contact Us</a>
<a href="Dashboard/index.html" class="hover:text-secondary transition-colors duration-300">DB</a>
<!-- Login Button -->
<a href="login.html">
<button class="ml-6 bg-white cursor-pointer hover:bg-secondary hover:text-white transition-colors duration-300 text-black font-medium px-5 py-2 rounded-lg hover:bg-gray-100">
Login
</button>
</a>
</nav>
</div>
<!-- Mobile Menu -->
<div id="mobileMenu" class="fixed inset-0 backdrop-blur-[3px] bg-opacity-50 hidden z-50">
<div class="bg-primary w-64 h-full shadow-lg relative p-6">
<!-- Close Button -->
<button id="menuClose" class="absolute top-4 right-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
<!-- Navigation Links -->
<nav class="flex flex-col space-y-4">
<a href="index.html" class="text-red-500 font-medium">Home</a>
<a href="members.html" class="hover:text-red-400">Members</a>
<a href="be_a_member.html" class="hover:text-red-400">Be a Member</a>
<a href="events.html" class="hover:text-red-400">Events</a>
<a href="gallery.html" class="hover:text-red-400">Gallery</a>
<a href="about_us.html" class="hover:text-red-400">About Us</a>
<a href="contact_us.html" class="hover:text-red-400">Contact Us</a>
<a href="Dashboard/index.html" class="hover:text-red-400">DB</a>
</nav>
<!-- Login Button -->
<a href="login.html">
<button class="mt-6 bg-white text-primary font-medium px-5 py-2 rounded-lg hover:bg-blue-900 w-full">
Login
</button>
</a>
</div>
</div>
</header>
<!-- members details page content start -->
<section class="max-w-7xl mx-auto px-6 py-12">
<div class="grid grid-cols-12 gap-8 items-center">
<!-- Left Side (Text) -->
<div class="col-span-12 md:col-span-8">
<h2 class="text-2xl md:text-3xl font-bold mb-4">
Mizanur Choudhury
</h2>
<h3 class="text-lg md:text-xl font-semibold text-gray-800 mb-4">
Tech Executive-AVP & Head of Network @ Global Management Expertise in Non-Profits & Fortune 500.
</h3>
<p class="text-gray-600 leading-relaxed">
Building Community, Empowering Growth – Our members come together to create a supportive network
that
fosters collaboration, celebrates Bangladeshi heritage, and drives both personal and professional
development
in the tech industry. We inspire innovation through shared knowledge and mentorship. We open doors
to global
opportunities while strengthening local impact. Together, we’re shaping the future of Bangladeshi
talent in
technology. Our platform connects experienced professionals with rising leaders to ensure continuous
learning. We promote cultural pride while embracing modern skills and global perspectives. Through
events,
networking, and collective support, we empower every member to thrive and succeed.
</p>
</div>
<!-- Right Side (Image) -->
<div class="col-span-12 md:col-span-4 flex justify-center md:justify-end">
<img src="images/guided-1.png" alt="Mizanur Choudhury"
class="rounded-2xl object-cover md:w-80 md:h-80">
</div>
</div>
<!-- members details -->
<div class="mt-20">
<!-- Title -->
<h2 class="text-2xl md:text-3xl font-bold mb-6">Member Details</h2>
<!-- Details -->
<div class="space-y-4 text-gray-700">
<p><span class="font-semibold">Full Name:</span> Mizanur Choudhury</p>
<p><span class="font-semibold">Designation:</span> Tech Executive-AVP & Head of Network @ Global
Management Expertise in Non-Profits & Fortune 500.</p>
<p><span class="font-semibold">Phone Number:</span> 929-301-6028</p>
<p><span class="font-semibold">Email Address:</span> info@gmail.com</p>
<p><span class="font-semibold">Registration/Trade License No.:</span> TRD-458921</p>
<p><span class="font-semibold">Industry / Sector:</span> Information Technology & Software Services</p>
<p><span class="font-semibold">Company Address:</span> New York, United States</p>
</div>
</div>
</section>
<!-- Want To Get In Touch start -->
<section class="py-14 lg:my-20 bg-gray">
<div class="max-w-7xl max-md:p-6 md:p-4 h-auto mx-auto bg-white rounded-xl">
<div class="grid grid-cols-12 gap-5 lg:p-10 max-md:p-3 ">
<div class="lg:col-span-6 md:col-span-6 max-md:col-span-12 h-full flex">
<div class=" ">
<h1 class="lg:text-4xl max-md:text-2xl font-bold text-dark-gray leading-10 my-5">
Connect with BATC Today
</h1>
<p class="text-sm font-light">Let’s Connect – We’d Love to Hear from You</p>
</div>
</div>
<div
class="lg:col-span-6 md:col-span-6 max-md:col-span-12 h-full flex flex-col items-center justify-center space-y-5">
<input class="border-0 bg-gray w-full px-5 py-3 rounded-lg outline-none " type="text" name=""
placeholder="Name" id="">
<input class="border-0 bg-gray w-full px-5 py-3 rounded-lg outline-none " type="text" name=""
placeholder="Email" id="">
<input class="border-0 bg-gray w-full h-20 px-5 py-3 rounded-lg outline-none" type="text" name=""
placeholder="Message" id="">
<div class=" mt-2 w-full">
<button
class="w-full bg-primary hover:bg-secondary text-white font-semibold hover:text-yellow py-2 px-6 rounded-xl transition duration-300">
Submit
</button>
</div>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer class="bg-[#0A0F44] text-white py-10">
<div class="max-w-7xl mx-auto px-6 grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Left Side -->
<div>
<!-- Logo -->
<img src="images/logo.png" alt="BATC Logo" class="h-14 mb-4">
<!-- Description -->
<p class="text-gray-300 mb-6">
Connecting Innovation, Culture, and Community – Uniting Bangladeshi-American tech professionals to
foster creativity, celebrate our heritage, and build meaningful connections that drive personal and
professional growth.
</p>
</div>
<!-- Right Side -->
<div class="flex flex-col md:items-end">
<h3 class="font-bold mb-3">Social Media</h3>
<div class="flex gap-3">
<a href="#" class="border w-8 h-8 flex items-center justify-center rounded"><i
class="fab fa-facebook-f"></i></a>
<a href="#" class="border w-8 h-8 flex items-center justify-center rounded"><i
class="fab fa-linkedin-in"></i></a>
<a href="#" class="border w-8 h-8 flex items-center justify-center rounded"><i
class="fab fa-youtube"></i></a>
<a href="#" class="border w-8 h-8 flex items-center justify-center rounded"><i
class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
<!-- Contact Info -->
<div
class="max-w-7xl px-6 mx-auto mt-8 flex flex-col md:items-center gap-4 text-gray-300 sm:flex-row sm:justify-around">
<div class="flex items-center gap-2">
<span class="text-lg"><i class="fa-solid fa-phone-volume"></i></span>
<span>929-301-6028</span>
</div>
<div class="flex items-center gap-2">
<span class="text-lg"><i class="fa-solid fa-envelope"></i></span>
<span>info@batc.com</span>
</div>
<div class="flex items-center gap-2">
<span class="text-xs md:text-lg "><i class="fa-solid fa-location-dot"></i></span>
<span>625W 57th St, New York, NY 10019</span>
</div>
</div>
<!-- Bottom Line -->
<div class="border-t border-gray-600 mt-8 pt-4 text-center text-gray-400 text-xs md:text-sm">
© 2025 BATC. All Rights Reserved. Designed & Developed by <span class="font-bold">Wyth Myth</span>
</div>
</footer>
<script>
// for navigation menu on mobile
const menuToggle = document.getElementById("menuToggle");
const mobileMenu = document.getElementById("mobileMenu");
const menuClose = document.getElementById("menuClose");
// Open menu
menuToggle.addEventListener("click", () => {
mobileMenu.classList.remove("hidden");
});
// Close menu
menuClose.addEventListener("click", () => {
mobileMenu.classList.add("hidden");
});
// Click outside to close
mobileMenu.addEventListener("click", (e) => {
if (e.target === mobileMenu) {
mobileMenu.classList.add("hidden");
}
});
// handle the multiple swiper js
// Dynamic swiper configuration
document.querySelectorAll('.mySwiper').forEach((swiperEl) => {
const breakpoints = swiperEl.dataset.breakpoints
? JSON.parse(swiperEl.dataset.breakpoints)
: {};
new Swiper(swiperEl, {
loop: true,
spaceBetween: 20,
breakpoints: breakpoints,
pagination: {
el: swiperEl.querySelector('.swiper-pagination'),
clickable: true
},
navigation: {
nextEl: swiperEl.querySelector('.swiper-button-next-custom'),
prevEl: swiperEl.querySelector('.swiper-button-prev-custom')
}
});
});
// eta navigation theke je page e jabe seta bold hoye jabe tar jonno
document.addEventListener("DOMContentLoaded", function () {
const links = document.querySelectorAll("nav a");
const current = window.location.pathname.split("/").pop(); // page name
links.forEach(link => {
if (link.getAttribute("href") === current) {
link.classList.add("font-bold", "text-secondary");
}
});
});
</script>
</body>
</html>