forked from mobibyte/social-coding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidappthat.html
More file actions
58 lines (56 loc) · 2.15 KB
/
idappthat.html
File metadata and controls
58 lines (56 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>MOBI | Projects</title>
<link rel="icon" href="../../public/mobi logo round.png" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="og:site_name" content="MOBI" />
<meta name="og:type" content="website" />
<meta name="og:url" content="https://mobi-uta.github.io/social-coding/" />
<meta name="og:title" content="MOBI" />
<meta name="og:description" content="MOBI Social Coding Experiment" />
<meta
name="og:image"
content="https://raw.githubusercontent.com/mobi-uta/social-coding/main/public/og-image.png"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@utamobi" />
<meta name="twitter:title" content="MOBI" />
<meta name="twitter:description" content="MOBI Social Coding Experiment" />
<meta
name="twitter:image"
content="https://raw.githubusercontent.com/mobi-uta/social-coding/main/public/og-image.png"
/>
<meta
name="twitter:image:alt"
content="A design cover of MOBI, A student-led programming community at the University of Texas at Arlington."
/>
<meta name="description" content="MOBI Social Coding Experiment" />
<link rel="icon" href="favicon.png" />
<link rel="stylesheet" href="./public/output.css" />
</head>
<!-- Most of the fun happens here! -->
<body>
<!-- HEADER -->
<div class="bg-gray-900 px-6 py-24 sm:py-32 lg:px-8">
<div class="mx-auto max-w-2xl text-center">
<h2 class="text-4xl font-bold tracking-tight text-white sm:text-6xl">
Social Coding
</h2>
<p class="mt-6 text-lg leading-8 text-gray-300">
🚀 Join Our Social Coding Sessions! Unleash Your Coding Creativity! 🚀
</p>
</div>
</div>
<h1 class="font-bold text-4xl m-5">Project Gallery</h1>
<ul
id="appsContainer"
role="list"
class="m-10 grid grid-cols-2 gap-x-4 gap-y-8 sm:grid-cols-3 sm:gap-x-6 lg:grid-cols-4 xl:gap-x-8"
>
<!-- add your app to the app.json file :) -->
</ul>
</body>
<script src="index.js"></script>
</html>