-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (51 loc) · 1.39 KB
/
index.html
File metadata and controls
60 lines (51 loc) · 1.39 KB
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
<html>
<head>
<title>Betafi is No More</title>
<style>
body {
font-family: system-ui, -apple-system, 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
max-width: 640px;
margin: 4em auto;
padding: 0;
background-color: #f5f5f5;
line-height: 1.5;
}
main {
padding: 2em;
background-color: #fff;
border-radius: 1em;
box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 2em;
}
img.logo {
display: block;
}
p {
font-size: 1.2em;
}
a {
color: #007bff;
position: relative;
}
a:hover {
color: #0056b3;
}
a:active {
color: #0056b3;
top: 1px;
}
</style>
</head>
<body>
<main>
<img class="logo" src="betafi-logo.svg" alt="Betafi Logo" width="240" height="80">
<h1>Betafi is No Longer Available</h1>
<p>Thanks for visiting us.</p>
<p>Unfortunately, Betafi, the moderated UX research toolkit, is no longer available.</p>
<p>If you have any questions, please contact us at <a href="mailto:support@betafi.co" target="_blank">support@betafi.co</a>.</p>
<p>It was a pleasure to serve you.</p>
</main>
</body>
</html>