-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.25 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Mermaid Diagrams</title>
<!-- Link to your Tailwind CSS output file -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="">
<div class="max-w-3xl mx-auto p-8">
<h1 class="text-4xl font-bold text-center text-orange-600 mb-6">Welcome to My Mermaid Diagrams</h1>
<p class="text-lg text-center mb-4">Select a diagram to view:</p>
<ul class="list-none space-y-4">
<li>
<a href="diagram1.html" class="text-xl text-blue-500 hover:text-blue-700 underline">
Feature Flags vs. Regression Tests
</a>
</li>
<li>
<a href="diagram2.html" class="text-xl text-blue-500 hover:text-blue-700 underline">
PagerDuty Flowchart
</a>
</li>
<li>
<a href="diagram3.html" class="text-xl text-blue-500 hover:text-blue-700 underline">
Iterative Release Blueprint
</a>
</li>
</ul>
</div>
</body>
</html>