-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (61 loc) · 4.01 KB
/
index.html
File metadata and controls
68 lines (61 loc) · 4.01 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PredictProtein Service Announcements</title>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<meta name="description" content="Latest service announcements and updates for PredictProtein">
</head>
<body class="bg-gray-50 min-h-screen">
<!-- Banner -->
<div class="flex flex-row bg-linear-to-r from-gray-50 to-gray-300 shadow-xl/20 items-center gap-4">
<img src="./pp-logo.png" alt="PredictProtein logo" class="object-contain object-left max-h-10 basis-1/4 md:ml-10">
<div class="flex flex-col basis-1/2 justify-center items-center gap-1 grow">
<h1 class="text-2xl font-bold text-gray-900 w-fit">PredictProtein Service Announcements</h1>
<span class="text-sm w-fit">Current Status and Important Updates</span>
</div>
<img src="./rl-logo.png" alt="Lab logo" class="object-contain object-right max-h-10 basis-1/4 md:mr-10">
</div>
<!-- Main Content -->
<div class="max-w-4xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<!-- Announcements List -->
<div class="space-y-8">
<!-- Single Announcement -->
<article class="bg-white rounded-lg shadow-md p-6 border-l-4 border-red-500">
<!-- Date -->
<div class="text-sm text-gray-500 mb-2">
<time datetime="2025-05-12">May 12, 2025</time>
</div>
<!-- Title -->
<h2 class="text-xl font-bold text-gray-900 mb-4">Important Notice: PredictProtein Service Currently Unavailable</h2>
<!-- Content -->
<div class="prose prose-gray max-w-none">
<p class="mb-4">The PredictProtein service is currently experiencing a major technical issue and is unavailable. At this point, it is unclear if the hosted service will be recoverable. We sincerely apologize for the inconvenience.</p>
<ul class="list-disc pl-6 mb-4 space-y-2">
<li><strong>If you are looking for a modern embedding-based replacement:</strong> Please consider the Biocentral service: <a href="https://biocentral.rostlab.org/" class="text-blue-600 hover:text-blue-800 underline" target="_blank">https://biocentral.rostlab.org</a></li>
<li><strong>Future Alternative Interface:</strong> We are developing an alternative single-sequence interface that will be published at <a href="https://lambda.predictprotein.org/" class="text-blue-600 hover:text-blue-800 underline" target="_blank">https://lambda.predictprotein.org/</a>. Updates on progress will be shared there</li>
</ul>
<p>We will post further updates on this page as they become available. For immediate questions, please contact <a href="mailto:help@predictprotein.org" class="text-blue-600 hover:text-blue-800 underline">help@predictprotein.org</a>. Thank you for your patience.</p>
</div>
</article>
<!-- Template for future announcements (commented out) -->
<!--
<article class="bg-white rounded-lg shadow-md p-6 border-l-4 border-yellow-500">
<div class="text-sm text-gray-500 mb-2">
<time datetime="YYYY-MM-DD">Date</time>
</div>
<h2 class="text-xl font-bold text-gray-900 mb-4">Announcement Title</h2>
<div class="prose prose-gray max-w-none">
<p>Announcement content...</p>
</div>
</article>
-->
</div>
<!-- Footer -->
<div class="mt-12 text-center text-sm text-gray-500">
<p>For technical support, contact <a href="mailto:help@predictprotein.org" class="text-blue-600 hover:text-blue-800 underline">help@predictprotein.org</a></p>
</div>
</div>
</body>
</html>