-
-
Notifications
You must be signed in to change notification settings - Fork 428
/
Copy pathindex.html
executable file
·125 lines (118 loc) · 3.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta
name="Description"
content="Coding Coach is here to connect mentors and mentees around the world, for free. We believe mentorship should be accessible to all, regardless of circumstance."
/>
<meta
name="google-site-verification"
content="FDwgnrh2ftb6shLvseXpn_mH1LNxln2eD7UgE1FSlfg"
/>
<!-- Open Graph data -->
<meta property="og:title" content="Coding Coach" />
<meta property="og:type" content="article" />
<meta property="og:url" content="/" />
<meta property="og:image" content="%PUBLIC_URL%/codingcoach-logo.jpg" />
<meta
property="og:description"
content="Connecting developers with mentors worldwide."
/>
<meta property="og:site_name" content="https://mentors.codingcoach.io/" />
<!-- Twitter cards -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@codingcoach_io" />
<meta name="twitter:domain" content="/" />
<meta name="twitter:creator" content="@codingcoach_io" />
<meta name="twitter:title" content="Coding Coach" />
<meta name="twitter:image" content="%PUBLIC_URL%/codingcoach-logo.jpg" />
<meta
name="twitter:description"
content="Connecting developers with mentors worldwide."
/>
<!-- Favicon -->
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="%PUBLIC_URL%/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="%PUBLIC_URL%/codingcoach-logo-32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="%PUBLIC_URL%/codingcoach-logo-16.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="%PUBLIC_URL%/codingcoach-logo-512.png"
/>
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link
rel="mask-icon"
href="%PUBLIC_URL%/safari-pinned-tab.svg"
color="#20293a"
/>
<meta name="msapplication-TileColor" content="#20293a" />
<meta name="theme-color" content="#20293a" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<link
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
type="text/css"
href="https://fonts.googleapis.com/css?family=Lato:400,400i"
as="font"
type="font/woff2"
crossorigin="true"
/>
<title>Coding Coach</title>
<!-- Google Analytics -->
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
(i[r] =
i[r] ||
function() {
(i[r].q = i[r].q || []).push(arguments);
}),
(i[r].l = 1 * new Date());
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m);
})(
window,
document,
'script',
'https://www.google-analytics.com/analytics.js',
'ga'
);
ga('create', 'UA-133820299-2', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>