forked from maybe-finance/maybe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaintenance.tsx
80 lines (78 loc) · 2.56 KB
/
Maintenance.tsx
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
export default function Maintenance() {
return (
<div className="h-screen flex flex-col items-center justify-center p-4">
<svg
width="117"
height="92"
viewBox="0 0 117 92"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<rect x="17.719" width="30.5852" height="19.0308" rx="9.5154" fill="#4CC9F0" />
<rect x="68.6948" width="30.5852" height="19.0308" rx="9.5154" fill="#4CC9F0" />
<rect
x="44.2266"
y="24.4677"
width="28.5462"
height="19.0308"
rx="9.5154"
fill="#4361EE"
/>
<rect
x="44.2266"
y="48.9364"
width="28.5462"
height="19.0308"
rx="9.5154"
fill="#7209B7"
/>
<rect
x="10.2429"
y="48.9364"
width="28.5462"
height="19.0308"
rx="9.5154"
fill="#7209B7"
/>
<rect
x="78.2104"
y="48.9364"
width="28.5462"
height="19.0308"
rx="9.5154"
fill="#7209B7"
/>
<rect
x="44.9065"
y="73.4041"
width="27.119"
height="18.5959"
rx="9.29794"
fill="#F72585"
/>
<rect
x="0.727783"
y="24.4677"
width="38.0616"
height="19.0308"
rx="9.5154"
fill="#4361EE"
/>
<rect
x="78.2104"
y="24.4677"
width="38.0616"
height="19.0308"
rx="9.5154"
fill="#4361EE"
/>
</svg>
<h1 className="mb-2 mt-10 font-extrabold text-base md:text-2xl text-white">
We'll be back soon!
</h1>
<p className="mb-10 text-base text-center text-gray-50 max-w-md">
We are currently doing some site maintenance and will be back up shortly.
</p>
</div>
)
}