Skip to content

Commit 8dbb22c

Browse files
authored
Create coming-soon.html
1 parent 4d3b66b commit 8dbb22c

1 file changed

Lines changed: 121 additions & 0 deletions

File tree

coming-soon.html

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Outparse Web App - Coming Soon</title>
7+
<meta name="author" content="Gbemisola Oyeniyi">
8+
<meta name="theme-color" content="##111b9d">
9+
<link rel="icon" href="/favicon.ico" type="image/x-icon">
10+
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
11+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
12+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
13+
<link rel="preconnect" href="https://fonts.googleapis.com">
14+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
15+
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
16+
<style>
17+
:root {
18+
--primary-color: #024ff9;
19+
--text-color: #333;
20+
--light-text: #666;
21+
--transition-speed: 0.3s;
22+
}
23+
* {
24+
margin: 0;
25+
padding: 0;
26+
box-sizing: border-box;
27+
}
28+
body {
29+
font-family: 'Noto Sans', sans-serif;
30+
background-color: white;
31+
color: var(--text-color);
32+
line-height: 1.6;
33+
display: flex;
34+
flex-direction: column;
35+
min-height: 100vh;
36+
padding: 1rem;
37+
text-align: center;
38+
}
39+
.container {
40+
max-width: 800px;
41+
margin: auto;
42+
width: 100%;
43+
padding: 0 1rem;
44+
}
45+
.icon {
46+
width: 80px;
47+
height: 80px;
48+
margin: 0 auto 1.5rem;
49+
object-fit: contain;
50+
}
51+
.pre-heading {
52+
font-size: 0.75rem;
53+
letter-spacing: 0.15em;
54+
text-transform: uppercase;
55+
color: var(--light-text);
56+
margin-bottom: 0.5rem;
57+
font-weight: 600;
58+
}
59+
h1 {
60+
color: var(--primary-color);
61+
text-transform: uppercase;
62+
letter-spacing: 0.25em;
63+
font-size: 2.5rem;
64+
margin-bottom: 1.5rem;
65+
line-height: 1.2;
66+
font-weight: 700;
67+
}
68+
p {
69+
margin-bottom: 2rem;
70+
color: var(--light-text);
71+
font-size: 1.125rem;
72+
}
73+
.cta-button {
74+
display: inline-flex;
75+
align-items: center;
76+
justify-content: center;
77+
background-color: var(--primary-color);
78+
color: white;
79+
padding: 0.75rem 1.5rem;
80+
border-radius: 4px;
81+
text-decoration: none;
82+
font-weight: 600;
83+
transition: all var(--transition-speed) ease;
84+
border: 2px solid var(--primary-color);
85+
}
86+
.cta-button:hover {
87+
background-color: transparent;
88+
color: var(--primary-color);
89+
transform: translateY(-2px);
90+
}
91+
.cta-button svg {
92+
margin-left: 0.5rem;
93+
width: 16px;
94+
height: 16px;
95+
fill: currentColor;
96+
}
97+
@media (max-width: 480px) {
98+
h1 {
99+
font-size: 2rem;
100+
}
101+
p {
102+
font-size: 1rem;
103+
}
104+
}
105+
</style>
106+
</head>
107+
<body>
108+
<div class="container">
109+
<img src="/assets/images/planet-saturn.svg" alt="Saturn icon" class="icon">
110+
<p class="pre-heading">Outparse web app is</p>
111+
<h1>Coming Soon</h1>
112+
<p>In the meantime, enjoy full access as a guest and explore an array of awesome features.</p>
113+
<a href="/app/index.html" class="cta-button">
114+
Try as Guest
115+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
116+
<path fill-rule="evenodd" d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z" clip-rule="evenodd" />
117+
</svg>
118+
</a>
119+
</div>
120+
</body>
121+
</html>

0 commit comments

Comments
 (0)