-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.php
More file actions
44 lines (44 loc) · 1.14 KB
/
index.php
File metadata and controls
44 lines (44 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Discontinued</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f5;
color: #333;
padding: 2rem;
}
.notice {
max-width: 600px;
text-align: center;
}
h1 {
font-size: 1.8rem;
margin-bottom: 1rem;
}
p {
font-size: 1.1rem;
line-height: 1.6;
color: #555;
}
</style>
</head>
<body>
<div class="notice">
<h1>Project Discontinued</h1>
<p>This project has been taken down due to a cease and desist order from <strong>HelloFresh SE</strong>.</p>
</div>
</body>
</html>