-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (52 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<base href="/"/>
<meta content="index, follow" name="robots"/>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon">
<link href="/favicon.ico" rel="icon" type="image/x-icon">
<title>Kyryll Kovalenko - Web Developer</title>
<meta content="Kyryll Kovalenko Portfolio Website" name="description"/>
<meta content="Kyryll Kovalenko" name="author"/>
<meta content="t1nkl - Web Developer" property="og:title"/>
<meta content="Kyryll Kovalenko Portfolio Website" property="og:description"/>
<meta content="website" property="og:type"/>
<meta content="en" property="og:locale"/>
<meta content="https://t1nkl.dev" property="og:url"/>
<meta content="/img/logo.png" property="og:image"/>
</head>
<body>
<noscript>
<strong>
I'm sorry but this website doesn't work properly without JavaScript enabled.
Please enable it to continue.
</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<!-- firebase -->
<script type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/9.19.1/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/9.19.1/firebase-analytics.js";
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
apiKey: "AIzaSyCrVK53_FFniEB5JIk1xEO_B5g2l5b_fhs",
authDomain: "my-projects-6fe1a.firebaseapp.com",
databaseURL: "https://my-projects-6fe1a.firebaseio.com",
projectId: "my-projects-6fe1a",
storageBucket: "my-projects-6fe1a.appspot.com",
messagingSenderId: "1077364480846",
appId: "1:1077364480846:web:f2eedd195f7fac05c3dc1f",
measurementId: "G-YTHT007EYB"
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
</script>
</body>
</html>