Spaces:
Running
Running
artificialguybr
commited on
Commit
•
e94f44a
1
Parent(s):
b99f9a1
Create index.html
Browse files- index.html +45 -0
index.html
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>GPU Provider Needed</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: 'Arial', sans-serif;
|
10 |
+
background-color: #f4f4f4;
|
11 |
+
margin: 0;
|
12 |
+
padding: 0;
|
13 |
+
display: flex;
|
14 |
+
justify-content: center;
|
15 |
+
align-items: center;
|
16 |
+
height: 100vh;
|
17 |
+
}
|
18 |
+
.container {
|
19 |
+
text-align: center;
|
20 |
+
background-color: #fff;
|
21 |
+
padding: 50px;
|
22 |
+
border-radius: 10px;
|
23 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
24 |
+
}
|
25 |
+
.message {
|
26 |
+
font-size: 1.5em;
|
27 |
+
margin-bottom: 20px;
|
28 |
+
}
|
29 |
+
.twitter-link {
|
30 |
+
color: #1DA1F2;
|
31 |
+
text-decoration: none;
|
32 |
+
font-weight: bold;
|
33 |
+
}
|
34 |
+
.twitter-link:hover {
|
35 |
+
text-decoration: underline;
|
36 |
+
}
|
37 |
+
</style>
|
38 |
+
</head>
|
39 |
+
<body>
|
40 |
+
<div class="container">
|
41 |
+
<div class="message">HF Spaces Closed Due to Lack of GPU.</div>
|
42 |
+
<div>If you are a GPU Provider and would like to provide GPU for this HF Space in exchange for publicity, please contact us on Twitter <a class="twitter-link" href="https://twitter.com/artificialguybr" target="_blank">@artificialguybr</a>.</div>
|
43 |
+
</div>
|
44 |
+
</body>
|
45 |
+
</html>
|