-
Notifications
You must be signed in to change notification settings - Fork 1
/
final_step.html
90 lines (89 loc) · 2.41 KB
/
final_step.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>
<title>Title of the document</title>
<style>
div {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
font-family: 'Roboto', sans-serif;
font-style: normal;
}
h5 {
font-weight: 400;
font-size: 48px;
line-height: 116.7%;
text-align: center;
color: #14142B;
}
p {
font-weight: 400;
font-size: 16px;
line-height: 175%;
text-align: center;
letter-spacing: 0.15px;
color: #4E4B66;
}
button_text {
width: 153px;
height: 26px;
font-weight: 500;
font-size: 15px;
line-height: 26px;
letter-spacing: 0.46px;
text-transform: capitalize;
color: #FFFFFF;
flex: none;
order: 0;
flex-grow: 0;
}
a {
display: flex;
flex-direction: column;
align-items: center;
padding: 4px 4px;
gap: 8px;
justify-content: center;
width: 197px;
height: 42px;
font-family: 'Roboto', sans-serif;
font-style: normal;
font-weight: bold;
font-size: 15px;
line-height: 26px;
text-decoration: none;
color: #FFFFFF;
background: #1E90FF;
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px rgba(0, 0, 0, 0.14), 0px 1px 5px rgba(0, 0, 0, 0.12);
border-radius: 4px;
flex: none;
order: 0;
flex-grow: 0;
cursor: pointer;
}
</style>
</head>
<body>
<div>
<h5>
☀️<br><br>So, what's next?
</h5>
<p>
Do you want to explore more public VIKTOR apps?
</p>
<a href="https://www.viktor.ai/apps-gallery/" target="_blank" rel="noopener noreferrer" class="button">Explore apps</a>
<p>
Do you want to build your own VIKTOR app?
</p>
<a href="https://www.viktor.ai/start-building-apps" style="background-color: #FFCC33; color: #14142B" target="_blank" rel="noopener noreferrer" class="button">Get started!</a>
<p>
Curious how this app was built? Go check out the repository:
</p>
<a href="https://github.com/viktor-platform/sample-solar-panel-configurator" style="background-color: #14142B" target="_blank" rel="noopener noreferrer" class="button">Github repository</a>
</div>
</body>
</html>