-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
399 lines (381 loc) · 21.9 KB
/
index.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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Google developers group Minna (GDGMinna) is a
community for technology enthusiasts, students and developers who are interested in Google's Developers technology.">
<meta name="keywords"
content="GDG, GDG Members, GDG Minna, DSC, google developers group, developers in minna, tech community in Minna, software developers, software developers">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="assets/img/favicon.ico" />
<link rel="apple-touch-icon" href="assets/img/favicon.ico" />
<!-- Stylesheets -->
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/output.css">
<!-- <link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet"> Remove comment statement to use Tailwind CSS without Node Modules-->
<link rel="stylesheet" href="assets/fonts/stylesheet.css">
<link rel="stylesheet" href="assets/css/custom.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="assets/css/uikit.min.css">
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<title>GDG Minna Website</title>
</head>
<body class="scroll" data-scroll="myBtn">
<header class="fixed w-screen top-0 left-0" <div class="container mx-auto pb-4">
<nav class="logo_div row flex justify-between mt-6 mx-auto w-11/12">
<a href="index.html" class="flex">
<img src="assets/img/logo.png" alt="GDG Minna Logo">
<h6 class="font-bold ml-2 mt-0 text-xl">GDG Minna</h6>
</a>
<div class="nav-items hidden lg:inline">
<a href="index.html" class="lg:ml-4 xl:ml-6">Home</a>
<a href="#second-section" class="lg:ml-4 xl:ml-6 scroll-to" data-scroll="second-section">About</a>
<a href="#seventh-section" class="lg:ml-4 xl:ml-6 scroll-to" data-scroll="seventh-section">Event</a>
<a href="#" class="lg:ml-4 xl:ml-6">Devfest</a>
<a href="#eight-section" class="lg:ml-4 xl:ml-6 scroll-to" data-scroll="eight-section">Team</a>
<a href="#tenth-section" class="lg:ml-4 xl:ml-6 scroll-to" data-scroll="tenth-section">Contact</a>
</div>
<nav class="h-auto flex md:hidden">
<span class="menu-btn flex relative flex-col justify-center items-center w-8 h-8 border-4 pri-border">
<span class="toggle-spinners bg w-4 h-1 mb-1 pointer-events-none"></span>
<span class="toggle-spinners bg w-4 h-1 pointer-events-none"></span>
</span>
</nav>
</nav>
</div>
<!-- small screen nav-->
<nav
class="sm-nav opacity-0 hidden fixed top-0 left-0 z-50 w-screen h-screen flex items-center pb-4 justify-center bg-gray-800 md:hidden">
<div class="flex flex-col pb-4">
<a class="sm-scroll mb-3 px-4 py-2 text-gray-200 cursor-pointer" href="index.html" data-scroll="">Home</a>
<a class="mb-3 px-4 py-2 text-gray-200 cursor-pointer scroll-to" data-scroll="second-section" href="">About</a>
<a class="mb-3 px-4 py-2 text-gray-200 cursor-pointer scroll-to" data-scroll="seventh-section" href="">Event</a>
<a class="mb-3 px-4 py-2 text-gray-200 cursor-pointer scroll-to" data-scroll="" href="#">Devfest</a>
<a class="mb-3 px-4 py-2 text-gray-200 cursor-pointer scroll-to" data-scroll="eight-section" href="">Team</a>
</li>
<a class="mb-3 px-4 py-2 text-gray-200 cursor-pointer scroll-to" data-scroll="tenth-section" href="">Contact</a>
</div>
</nav>
</header>
<!-- Stickers -->
<div class="stickers absolute top-0 left-0">
<img class="sticker_img" src="assets/img/gdg_stickers.png" alt="GDG Stickers">
</div>
<!-- First section -->
<section id="first-section">
<div class="container mx-auto lg:pt-16 pt-24 lg:mt-12">
<div class="row items-center mx-auto w-11/12 lg:flex lg:justify-between">
<div class="hero-icon flex justify-center items-center hidden lg:inline lg:w-5/12 h-auto">
<img class="mx-auto my-auto" src="assets/img/hero icon.png" alt="GDG Icon">
</div>
<div class="hero-aside lg:w-6/12">
<h4 class="text-sm md:text-base">GDG Minna</h4>
<h1 class="capitalize font-bold leading-normal text-3xl md:text-4xl">Build awesome<br>products <span
class="highlight">together.</span></h1>
<p class="leading-relaxed mt-4 mb-6 text-sm md:text-base md:w-11/12">Google Developers Group Minna is a
Community
where Developers and IT Enthusiast meet to solve real life problems using various Google products. We learn,
share and also inspire aspiring developers</p>
<div class="flex flex-col w-4/6 md:flex-row md:justify-between md:w-2/5 lg:w-3/5">
<a href="https://www.meetup.com/GDGMinna" rel=”noreferrer” target="_blank"
class="highlight-btn px-6 py-3 rounded shadow-xl text-white text-center">Become a Member</a>
<a href="https://developers.google.com/community/gdg" rel=”noreferrer” target="_blank"
class="highlight mt-6 underline md:mt-3">Learn More</a>
</div>
</div>
</div>
</div>
</section>
<!-- /First Section -->
<!-- <button id="myBtn" title="Go to top">Top</button> -->
<span id="myBtn" onclick="scrollToTop()">
<img src="./assets/img/arrow-up.svg" class="lg:h-6 h-4 lg:w-6 w-4" alt="arrow head">
</span>
<!-- Second Section -->
<section id="second-section">
<div class="container mx-auto pt-16" data-aos="fade-up">
<div class="row flex flex-col mx-auto w-11/12 lg:flex-row-reverse lg:justify-between lg:pt-20 lg:w-10/12">
<h2 class="capitalize font-bold leading-snug mb-8 text-2xl md:text-3xl lg:hidden ">Why become a member?</h2>
<div class="member-photo w-full lg:w-6/12">
<img class="" src="assets/img/GDGMinnainfo.jpg" alt="Member Photo">
</div>
<div class="member-aside self-center lg:w-5/12">
<h2 class="capitalize font-bold hidden leading-snug text-2xl md:text-3xl lg:block ">Why become a<br>member?
</h2>
<p class="leading-relaxed mt-4 mb-4 text-sm md:text-base md:w-5/6 lg:w-11/12">When you join GDG Minna, you’ll
have the opportunity to meet new and local developers with similar interest in technology, learn new skills
through hands-on workshops attend talks on a wide range of technical topics for free.</p>
<a href="https://www.meetup.com/GDGMinna" rel=”noreferrer” target="_blank"
class="highlight mt-6 underline md:mt-3">Become a
Member</a>
</div>
</div>
</div>
</section>
<!-- /Second Section -->
<!-- Third Section -->
<section id="third-section">
<div class="container mx-auto pt-16" data-aos="fade-up">
<div class="row flex flex-col mx-auto w-11/12 lg:justify-between lg:pt-20">
<h2 class="capitalize font-bold leading-snug mb-8 text-2xl md:text-3xl lg:mb-16">What we do</h2>
<div class="activities flex flex-col flex-wrap justify-between md:flex-row w-10/12 md:w-full mx-auto">
<div class="meetups mb-6 relative w-full md:w-6/12 lg:w-1/4">
<img src="assets/img/code-chat.png" alt="chat icon">
<h3 class="font-bold mt-3 text-xl">Meetups</h3>
<p class="leading-loose mt-4 mb-6 text-sm md:text-base md:w-11/12">Meet with experienced Mentors, from the
community members, share knowledge.</p>
</div>
<div class="codelabs relative mb-6 w-full md:w-6/12 lg:w-1/4">
<img src="assets/img/code-brackets.png" alt="brackets">
<h3 class="font-bold mt-3 text-xl">Codelabs</h3>
<p class="leading-loose mt-4 mb-6 text-sm md:text-base md:w-11/12">Get hands-on experience and guidance from
the community members.</p>
</div>
<div class="campus-events relative mb-6 w-full md:w-6/12 lg:w-1/4">
<img src="assets/img/code-graduation.png" alt="graduation">
<h3 class="font-bold mt-3 text-xl">Campus Events</h3>
<p class="leading-loose mt-4 mb-6 text-sm md:text-base md:w-11/12">Share knowledge in different companies,
colleges and universities.</p>
</div>
<div class="viewing-parties relative mb-6 w-full md:w-6/12 lg:w-1/4">
<img src="assets/img/code-tv.png" alt="tv">
<h3 class="font-bold mt-3 text-xl">Live Viewing Parties</h3>
<p class="leading-loose mt-4 mb-6 text-sm md:text-base md:w-11/12">Watch live google events. From Google I/O
to lauching of new Google products.</p>
</div>
</div>
</div>
</div>
</section>
<!-- /Third Section -->
<!-- Fourth Section -->
<section id="fourth-section">
<div class="container mx-auto pt-16" data-aos="fade-up">
<div class="row flex flex-col mx-auto w-11/12 lg:flex-row lg:justify-between lg:pt-20 lg:w-10/12">
<h6 class="awesome font-medium lg:hidden">Awesome news for women in tech</h6>
<h2 class="capitalize font-bold leading-snug mb-8 text-2xl md:text-3xl lg:hidden ">Google has Partnered<br>with
Women Techmakers</h2>
<div class="member-photo w-full lg:w-5/12">
<img class="" src="assets/img/WTM.jpg" alt="women tech makers Photo">
</div>
<div class="hero-aside lg:w-6/12">
<h6 class="awesome font-medium hidden lg:block">Awesome news for women in tech</h6>
<h2 class="capitalize font-bold hidden leading-snug text-2xl md:text-3xl lg:block ">Google has
Partnered<br>with Women Techmakers</h2>
<p class="leading-relaxed mt-4 mb-4 text-sm md:text-base md:w-4/6 lg:w-full">Get connect with vibrant and
talented African women in tech community, with top tech companies, enhance your skills portfolio,
celebrating diversity in all forms within the technology industry. It’s time to stand up and be counted.</p>
<a href="https://www.womentechmakers.com" rel=”noreferrer” target="_blank" class="mt-6 underline md:mt-3">Know
More</a>
</div>
</div>
</div>
</section>
<!-- /Fourth Section -->
<!-- Fifth Section -->
<section id="fifth-section">
<div class="container mx-auto pt-16" data-aos="fade-up">
<div class="row flex flex-col mx-auto w-11/12 lg:flex-row lg:justify-between lg:pt-20 lg:w-10/12">
<iframe class="gdg_video mx-auto" title="gdg video" src="https://www.youtube.com/embed/KlWVfEiW7Ak"
frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
</section>
<!-- /Fifth Section -->
<!-- Sixth Section -->
<section id="dixth-section">
<div class="container mx-auto pt-16" data-aos="fade-up">
<div class="row flex flex-col mx-auto w-11/12 lg:justify-between lg:pt-20">
<h2 class="capitalize font-bold leading-snug mb-3 text-2xl md:text-3xl">Learning group</h2>
<p class="leading-relaxed mt-4 mb-4 text-sm md:text-base md:w-4/6 lg:w-5/12">Google Developer Groups (GDGs) are
for developers who are interested in different Google's development technologies.</p>
<div class="activities flex flex-row flex-wrap justify-between mx-auto w-full">
<div class="angular h-32 rounded mb-6 w-2/6 md:w-1/6">
<img class="mt-4 mx-auto" src="assets/img/angular-logo.png" alt="angular icon">
<p class="text-center mt-3 text-xs md:text-base md:w-11/12">Angular</p>
</div>
<div class="firebase h-32 rounded mb-6 w-2/6 md:w-1/6">
<img class="mx-auto" src="assets/img/google_firebase.png" alt="firebase icon">
<p class="text-center mt-stop text-xs md:text-base md:w-11/12">Firebase</p>
</div>
<div class="android h-32 rounded mb-6 w-2/6 md:w-1/6">
<img class="mt-3 mx-auto" src="assets/img/android.png" alt="android icon">
<p class="text-center mt-3 text-xs md:text-base md:w-11/12">Android</p>
</div>
<div class="google-cloud h-32 rounded mb-6 w-2/6 md:w-1/6">
<img class="mt-5 mx-auto" src="assets/img/Google_cloud_logo.png" alt="google cloud icon">
<p class="text-center mt-3 text-xs md:text-base md:w-11/12">Google CLoud</p>
</div>
<div class="kotlin h-32 rounded mb-6 w-2/6 md:w-1/6">
<img class="mt-6 mx-auto" src="assets/img/kotlin-logo.png" alt="kotlin icon">
<p class="text-center mt-3 text-xs md:text-base md:w-11/12">Kotlin</p>
</div>
<div class="google-maps h-32 rounded mb-6 w-2/6 md:w-1/6">
<img class="mt-3 mx-auto" src="assets/img/google-maps.png" alt="google maps icon">
<p class="text-center mt-1 text-xs md:text-base md:w-11/12">Google Maps</p>
</div>
</div>
</div>
</div>
</section>
<!-- /Sixth Section -->
<!-- Seventh section -->
<section id="seventh-section">
<div class="container mx-auto" data-aos="fade-up">
<div class="row flex flex-col mx-auto w-11/12 lg:justify-between">
<div class="lg:mb-12 lg:mt-16 mt-16">
<h2 class="lg:text-2xl lg:font-bold font-bold">Events</h2>
<p class="event-text lg:w-4/12">Google Developer Groups (GDGs) are for individuals
interested in Google's development technologies.</p>
</div>
<div id="cards" class="row w-11/12"></div>
</div>
</div>
</section>
<!-- /seventh section -->
<!-- Team section -->
<section id="eight-section">
<div class="organiser">
<div class="container lg:mx-auto" data-aos="fade-up">
<div class="row w-11/12 mx-auto">
<h2 class="team pt-6 lg:pt-16 ">The Team</h2>
<div class="uk-position-relative pt-8 lg:pb-12 uk-visible-toggle uk-light cancel" tabindex="-1" uk-slider>
<div class="uk-position-relative uk-visible-toggle uk-light cancel" tabindex="-1">
<ul class="uk-slider-items uk-child-width-1-3@s uk-grid lg:mb-12">
<li>
<div class="uk-card card shadow-none">
<div class="uk-card-media-top m-auto w-11/12 flex justify-center items-center">
<img src="assets/img/memunat.jpg" class="pt-2 reorder-pic" alt="women techmaker lead">
</div>
<div class="details rounded-b pb-8 m-auto w-11/12 mt-4">
<h3 class="uk-card-title lg:ml-4 ml-10">Memunat Manzuma</h3>
<p class="evt-date lg:ml-4 ml-10">WTM Minna Ambassador</p>
</div>
</div>
</li>
<li>
<div class="uk-card card card-shadow shadow-none ">
<div class="uk-card-media-top m-auto w-11/12 flex justify-center items-center">
<img src="assets/img/umar.jpg" class="pt-2 reorder-pic" alt="gdg minna organizer">
</div>
<div class="details rounded-b pb-8 m-auto w-11/12 mt-4">
<h3 class="uk-card-title lg:ml-4 ml-10">Umar Saidu Auna</h3>
<p class="evt-date lg:ml-4 ml-10">GDG Minna Organizer</p>
</div>
</div>
</li>
<li>
<div class="uk-card card shadow-none">
<div class="uk-card-media-top m-auto w-11/12 flex justify-center items-center">
<img src="assets/img/isaac.jpg" class="pt-2 reorder-pic" alt="gdg minna community manager">
</div>
<div class="details rounded-b pb-8 m-auto w-11/12 mt-4">
<h3 class="uk-card-title lg:ml-4 ml-10">Isaac Marcus</h3>
<p class="evt-date lg:ml-4 ml-10">GDG Minna Co-Organizer</p>
</div>
</div>
</li>
</ul>
<a class="uk-position-center-left uk-hidden-hover uk-bg" href="#" uk-slidenav-previous
uk-slider-item="previous"></a>
<a class="uk-position-center-right uk-hidden-hover uk-bg" href="#" uk-slidenav-next
uk-slider-item="next"></a>
</div>
<ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin uk-dark"></ul>
</div>
</div>
</div>
</div>
</section>
<!-- /team section -->
<!-- ninth section -->
<section id="nine-section">
<div class="container mx-auto lg:mt-12 mt-2" data-aos="fade-up">
<div class="row flex flex-col w-11/12 lg:justify-between mx-auto">
<h3 class="team">General Partners</h3>
<div class="flex justify-between lg:flex lg:justify-start">
<div class="women-tech">
<img src="assets/img/women.png" width="150px" alt="WTM-logo">
</div>
</div>
<p class="partner-text lg:w-8/12">A very big thank you to our partners for your continued partnership.<br />
If you’re interested in supporting us or showcasing your products and services at <span class="font-bold">GDG
Minna</span> events, contact us at
<a href="mailto:[email protected]">[email protected]</a> to discuss partnership opportunities.</p>
</div>
</div>
</section>
<!-- /ninth section -->
<!-- tenth-section -->
<section id="tenth-section">
<div class="container mx-auto lg:mt-12 mt-2 pb-12">
<div class="row flex w-11/12 lg:flex-row flex-col lg:justify-between lg:pt-8 mx-auto pb-6">
<div class="flex flex-col">
<h4>Contact us</h4>
<!--<p>No 28, Zone C Farm Centre Tunga Minna, Niger State</p>-->
<p>Phone: +2348183969048</p>
<p>Phone: +2347031162515</p>
<p>Email: [email protected]</p>
</div>
<div class="flex flex-col">
<h4>Follow us</h4>
<div class="img-inline">
<span>
<a href="https://facebook.com/GDGMinna" class="inline" rel=”noreferrer” target="_blank">
<img src="./assets/img/facebook-logo.png" class="lg:h-12 h-8 lg:w-12 w-8" alt="facebook logo">
</a>
</span>
<span>
<a href="https://medium.com/@gdgminna" rel=”noreferrer” class="inline" target="_blank">
<img src="./assets/img/medium-logo.png" class="lg:h-12 h-8 lg:w-12 w-8 lg:ml-4" alt="medium logo">
</a>
</span>
<span>
<a href="https://twitter.com/gdgminna" rel=”noreferrer” target="_blank">
<svg class="fill-current text-teal-500 inline-block lg:h-12 h-8 lg:w-12 w-8 lg:ml-4"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<path
d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" />
</svg>
</a>
</span>
<span>
<a href="https://github.com/GDG-Minna" rel=”noreferrer” target="_blank">
<svg class="inline-block lg:h-12 h-8 lg:w-12 w-8 lg:ml-4" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512">
<path
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" />
</svg>
</a>
</span>
</div>
</div>
</div>
<div
class="row flex lg:flex-row w-11/12 lg:justify-between justify-between mx-auto pt-4 border-t border-t-solid border-gray-500">
<div>
<h5>© GDGMinna 2019</h5>
</div>
<div>
<a href="https://developers.google.com/community/guidelines" target="_blank">Code of Conduct</a>
<!-- <h5></h5> -->
</div>
<!-- <div>
<h5>GDGMINNA 20</h5>
</div> -->
</div>
</div>
</section>
<!-- /tenth-section -->
<script src="./assets/js/uikit.min.js"></script>
<script src="./assets/js/uikit-icons.min.js"></script>
<script src="./assets/js/main.js"></script>
<script>
AOS.init({
offset: 400,
duration: 800
});
</script>
</body>
</html>