-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
185 lines (174 loc) · 4.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-HMN9C1049Z"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag () {
dataLayer.push( arguments )
}
gtag( "js", new Date() )
gtag( "config", "G-HMN9C1049Z" )
</script>
<!-- Google tag (gtag.js) -->
<meta charset="UTF-8"/>
<link rel="icon" href="/public/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="theme-color" content="#5D21E6"/>
<meta
name="description"
content="We offer high-in-demand tech courses such as FullStack Website Development course, product design UI/UX, data science and analysis and frontend engineering "
/>
<title>
Techstudio Academy | No 1 Tech training institute in Lagos, Nigeria
</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./public/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./public/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./public/favicon-16x16.png"
/>
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://techstudioacademy.com/"/>
<meta property="og:type" content="website"/>
<meta property="og:title" content="Techstudio Academy"/>
<meta
property="og:description"
content="We offer high-in-demand tech courses such as FullStack Website Development course, product design UI/UX, data science and analysis and frontend engineering "
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image"/>
<meta property="twitter:domain" content="https://techstudioacademy.com/"/>
<meta property="twitter:url" content="https://techstudioacademy.com/"/>
<meta name="twitter:title" content="Techstudio Academy"/>
<meta
name="twitter:description"
content="We offer high-in-demand tech courses such as FullStack Website Development course, product design UI/UX, data science and analysis and frontend engineering "
/>
<!-- Links and Icons -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="./public/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./public/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./public/favicon-16x16.png"
/>
</head>
<style>
.preloader {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.icon {
position: relative;
width: 100%;
height: 100%;
z-index: 999;
}
.marker {
background-color: #1f2666;
height: 2em;
width: 2em;
border-radius: 50%;
transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
}
.marker:before {
position: absolute;
content: '';
height: 2em;
width: 2em;
left: 0;
top: 0;
background-color: transparent;
border-radius: 50%;
box-shadow: 0px 0px 10px 30px #0266f450;
-webkit-animation: active 2s infinite ease-in-out;
animation: active 2s infinite ease-in-out;
}
@-webkit-keyframes active {
0% {
-webkit-transform: scale(0.1);
opacity: 1;
}
70% {
-webkit-transform: scale(1.5);
opacity: 0;
}
100% {
opacity: 0;
}
}
@keyframes active {
0% {
transform: scale(0.1);
opacity: 1;
}
70% {
transform: scale(1);
opacity: 0;
}
100% {
opacity: 0;
}
}
</style>
<!-- HEAD -->
<body>
<div id="root">
<div class="preloader">
<div class="marker">
<img class="icon" src="./public/favicon-32x32.png" alt="pre-loader"/>
</div>
</div>
</div>
<script type="module" src="/src/main.jsx"></script>
<!-- <script>
if (`serviceWorker` in navigator) {
window.addEventListener(`load`, function () {
navigator.serviceWorker.register(`serviceWorker.js`).then(
function (registration) {
// Registration was successful
console.log(
`ServiceWorker registration successful with scope: `,
registration.scope
)
},
function (err) {
// registration failed :(
console.log(`ServiceWorker registration failed: `, err)
}
)
})
}
</script> -->
</body>
</html>