Create el_ra.html
Browse files- static/el_ra.html +47 -0
static/el_ra.html
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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" />
|
| 6 |
+
<title>E&L RA</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
</head>
|
| 9 |
+
<body class="bg-slate-50 text-slate-800">
|
| 10 |
+
<header class="max-w-6xl mx-auto px-4 py-6 flex items-center justify-between">
|
| 11 |
+
<h1 class="text-2xl font-bold">E&L Risk Assessment</h1>
|
| 12 |
+
<a href="/" class="text-sm underline hover:no-underline">← Back to Home</a>
|
| 13 |
+
</header>
|
| 14 |
+
|
| 15 |
+
<main class="max-w-6xl mx-auto px-4 pb-12">
|
| 16 |
+
<p class="mb-6 text-slate-600">
|
| 17 |
+
Select a framework to continue:
|
| 18 |
+
</p>
|
| 19 |
+
|
| 20 |
+
<!-- Tiles -->
|
| 21 |
+
<div class="grid gap-4 md:grid-cols-2">
|
| 22 |
+
<!-- ISO 10993 Part 17 tile -->
|
| 23 |
+
<a href="/elra/iso-10993-17.html"
|
| 24 |
+
class="block p-5 rounded-xl border border-slate-200 bg-white hover:shadow-md transition">
|
| 25 |
+
<div class="flex items-center justify-between">
|
| 26 |
+
<h2 class="text-lg font-semibold">ISO 10993 Part 17</h2>
|
| 27 |
+
<span class="text-slate-400">▸</span>
|
| 28 |
+
</div>
|
| 29 |
+
<p class="mt-2 text-sm text-slate-600">
|
| 30 |
+
Guidance on allowable limits for leachables/extractables.
|
| 31 |
+
</p>
|
| 32 |
+
</a>
|
| 33 |
+
|
| 34 |
+
<!-- (Optional) Add more tiles later the same way -->
|
| 35 |
+
<!--
|
| 36 |
+
<a href="/elra/another-framework.html" class="block p-5 rounded-xl border border-slate-200 bg-white hover:shadow-md transition">
|
| 37 |
+
<div class="flex items-center justify-between">
|
| 38 |
+
<h2 class="text-lg font-semibold">Another Framework</h2>
|
| 39 |
+
<span class="text-slate-400">▸</span>
|
| 40 |
+
</div>
|
| 41 |
+
<p class="mt-2 text-sm text-slate-600">Short description.</p>
|
| 42 |
+
</a>
|
| 43 |
+
-->
|
| 44 |
+
</div>
|
| 45 |
+
</main>
|
| 46 |
+
</body>
|
| 47 |
+
</html>
|