File size: 1,724 Bytes
46a92f9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>E&L RA</title>
  <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-slate-50 text-slate-800">
  <header class="max-w-6xl mx-auto px-4 py-6 flex items-center justify-between">
    <h1 class="text-2xl font-bold">E&L Risk Assessment</h1>
    <a href="/" class="text-sm underline hover:no-underline">← Back to Home</a>
  </header>

  <main class="max-w-6xl mx-auto px-4 pb-12">
    <p class="mb-6 text-slate-600">
      Select a framework to continue:
    </p>

    <!-- Tiles -->
    <div class="grid gap-4 md:grid-cols-2">
      <!-- ISO 10993 Part 17 tile -->
      <a href="/elra/iso-10993-17.html"
         class="block p-5 rounded-xl border border-slate-200 bg-white hover:shadow-md transition">
        <div class="flex items-center justify-between">
          <h2 class="text-lg font-semibold">ISO 10993 Part 17</h2>
          <span class="text-slate-400"></span>
        </div>
        <p class="mt-2 text-sm text-slate-600">
          Guidance on allowable limits for leachables/extractables.
        </p>
      </a>

      <!-- (Optional) Add more tiles later the same way -->
      <!--
      <a href="/elra/another-framework.html" class="block p-5 rounded-xl border border-slate-200 bg-white hover:shadow-md transition">
        <div class="flex items-center justify-between">
          <h2 class="text-lg font-semibold">Another Framework</h2>
          <span class="text-slate-400">▸</span>
        </div>
        <p class="mt-2 text-sm text-slate-600">Short description.</p>
      </a>
      -->
    </div>
  </main>
</body>
</html>