-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
90 lines (83 loc) · 3.36 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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0R15WNSGQZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-0R15WNSGQZ');
</script>
<meta charset="utf-8">
<title>Your Cyberbuddy</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="Files/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="Files/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="Files/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
<!-- Main CSS -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<div class="back-div">
<div class="img-div">
<img src="Files/pen.png">
</div>
<p>We are soon going to build this website.</p>
<div class="mid-div">
<div class="mid-div-left">
<h3>Be a part of us</h3><hr>
<a href="https://register.cyberbuddy.io">register.cyberbuddy.io</a>
</div>
<div class="mid-div-right">
<h3>Contact us</h3><hr>
<a href="mailto:contact@cyberbuddy.io">contact@cyberbuddy.io</a>
</div>
</div>
<div class="end-div">
<div class="end-div-top"><h4>Checkout our work</h4></div>
<div class="end-div-bot">
<div>
<a href="https://github.com/cyberbuddy-io"> <img src="Files/github.png" width="40px" height="40px"/></a>
<a href="https://github.com/cyberbuddy-io"> GitHub</a>
</div>
<div>
<a href="https://register.cyberbuddy.io/"> <img src="Files/form.png" width="45px" height="45px"/></a>
<a href="https://register.cyberbuddy.io/"> Forms</a>
</div>
<div>
<a href="https://blog.cyberbuddy.io"> <img src="Files/blog.png" width="49px" height="49px"/></a>
<a href="https://blog.cyberbuddy.io"> Blog</a>
</div>
</div>
</div>
</div>
<p style="font-size: 16px;color: grey;margin: 15px;">Made by Team <a style="color: darkgrey;" href="https://cyberbuddy.io" target="_blank">Cyberbuddy</a></p>
<script type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/9.6.10/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/9.6.10/firebase-analytics.js";
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
apiKey: "AIzaSyDScbf_Ee5sWPtrNioXAFGHDy_rYKAEFsk",
authDomain: "cyberbuddy-io.firebaseapp.com",
projectId: "cyberbuddy-io",
storageBucket: "cyberbuddy-io.appspot.com",
messagingSenderId: "983745723845",
appId: "1:983745723845:web:b308ecdf1b446cdcf81fac",
measurementId: "G-0R15WNSGQZ"
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
</script>
</body>
</html>