forked from RyanFitzgerald/devportfolio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalendly-success.html
120 lines (116 loc) · 4.11 KB
/
calendly-success.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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="keywords"
content="Developer, Software, Startup, GreenMod, Alfredo, React, ReactJS, Web, Portfolio"
/>
<meta name="author" content="Giorgio Bertolotti" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Meet booked!</title>
<meta property="og:title" content="Giorgio Bertolotti" />
<meta property="og:locale" content="en_US" />
<meta
name="description"
content="My name is Giorgio Bertolotti, I am a startup co-founder and freelance software developer. I like to study and keep up to date to improve my methodologies, productivity and the quality of my work."
/>
<meta
property="og:description"
content="My name is Giorgio Bertolotti, I am a startup co-founder and freelance software developer. I like to study and keep up to date to improve my methodologies, productivity and the quality of my work."
/>
<meta
property="twitter:description"
content="My name is Giorgio Bertolotti, I am a startup co-founder and freelance software developer. I like to study and keep up to date to improve my methodologies, productivity and the quality of my work."
/>
<link rel="canonical" href="https://bertolotti.dev/" />
<meta property="og:url" content="https://bertolotti.dev/" />
<meta property="og:site_name" content="Giorgio Bertolotti" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/styles.css" rel="stylesheet" />
<link rel="stylesheet" href="css/aos.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-138940263-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-138940263-1");
</script>
</head>
<body>
<div
class="vh-100 w-75 m-auto d-flex justify-content-center align-items-center"
>
<div>
<h1 id="emoji" class="text-center" data-aos="fade-down">💪</h1>
<br />
<h2 data-aos="zoom-in">You've booked a meet!<br /></h2>
<h5 data-aos="fade-up">
You can support my work:<br />
<ul>
<li>
<a href="https://www.buymeacoffee.com/GiorgioZem" target="_blank"
>Buy me a coffee</a
>
</li>
<li>
Star my projects on
<a href="https://github.com/GiorgioBertolotti" target="_blank"
>GitHub</a
>
</li>
<li>
Confirm my skills on
<a
href="https://linkedin.com/in/giorgiobertolotti/"
target="_blank"
>LinkedIn</a
>
</li>
<li>
Leave 5-star reviews on
<a
href="https://play.google.com/store/apps/developer?id=Giorgio+Bertolotti"
target="_blank"
>Play Store</a
>
</li>
</ul>
</h5>
</div>
</div>
<footer class="fixed-bottom">
<div class="container">Copyright © 2024 Giorgio Bertolotti</div>
</footer>
<!-- End footer -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/aos.js"></script>
<script>
AOS.init({ once: true });
randomNumber = Math.floor(Math.random() * 4 + 1);
switch (randomNumber) {
case 1:
$("#emoji").html("💪");
break;
case 2:
$("#emoji").html("🙏🏻");
break;
case 3:
$("#emoji").html("🔥");
break;
case 4:
$("#emoji").html("❤️");
break;
}
</script>
</body>
</html>