|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 7 | + <title>ModularityKit.Mutator</title> |
| 8 | + <style> |
| 9 | + :root { |
| 10 | + color-scheme: light; |
| 11 | + --bg: #f6f7f9; |
| 12 | + --card: #ffffff; |
| 13 | + --border: #d9dee7; |
| 14 | + --text: #122033; |
| 15 | + --muted: #5b6778; |
| 16 | + --accent: #143a5a; |
| 17 | + --accent-strong: #0d2940; |
| 18 | + } |
| 19 | + |
| 20 | + html, body { |
| 21 | + margin: 0; |
| 22 | + min-height: 100%; |
| 23 | + background: var(--bg); |
| 24 | + color: var(--text); |
| 25 | + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; |
| 26 | + } |
| 27 | + |
| 28 | + .page { |
| 29 | + max-width: 980px; |
| 30 | + margin: 0 auto; |
| 31 | + padding: 32px 20px 48px; |
| 32 | + } |
| 33 | + |
| 34 | + .hero { |
| 35 | + background: var(--card); |
| 36 | + border: 1px solid var(--border); |
| 37 | + border-radius: 8px; |
| 38 | + box-shadow: 0 1px 2px rgba(18, 32, 51, 0.04); |
| 39 | + overflow: hidden; |
| 40 | + } |
| 41 | + |
| 42 | + .hero__banner { |
| 43 | + display: block; |
| 44 | + width: 100%; |
| 45 | + height: auto; |
| 46 | + } |
| 47 | + |
| 48 | + .hero__body { |
| 49 | + padding: 28px; |
| 50 | + } |
| 51 | + |
| 52 | + h1 { |
| 53 | + margin: 0 0 12px; |
| 54 | + font-size: 2rem; |
| 55 | + line-height: 1.1; |
| 56 | + } |
| 57 | + |
| 58 | + p { |
| 59 | + margin: 0 0 18px; |
| 60 | + color: var(--muted); |
| 61 | + line-height: 1.55; |
| 62 | + } |
| 63 | + |
| 64 | + .grid { |
| 65 | + display: grid; |
| 66 | + grid-template-columns: repeat(2, minmax(0, 1fr)); |
| 67 | + gap: 16px; |
| 68 | + margin-top: 24px; |
| 69 | + } |
| 70 | + |
| 71 | + .card { |
| 72 | + background: var(--card); |
| 73 | + border: 1px solid var(--border); |
| 74 | + border-radius: 8px; |
| 75 | + padding: 18px; |
| 76 | + } |
| 77 | + |
| 78 | + .card h2 { |
| 79 | + margin: 0 0 10px; |
| 80 | + font-size: 1rem; |
| 81 | + } |
| 82 | + |
| 83 | + .links { |
| 84 | + display: grid; |
| 85 | + gap: 8px; |
| 86 | + } |
| 87 | + |
| 88 | + .links a { |
| 89 | + color: var(--accent); |
| 90 | + text-decoration: none; |
| 91 | + font-weight: 600; |
| 92 | + } |
| 93 | + |
| 94 | + .links a:hover, |
| 95 | + .links a:focus { |
| 96 | + color: var(--accent-strong); |
| 97 | + text-decoration: underline; |
| 98 | + } |
| 99 | + |
| 100 | + @media (max-width: 720px) { |
| 101 | + .page { |
| 102 | + padding: 16px 12px 32px; |
| 103 | + } |
| 104 | + |
| 105 | + .hero__body { |
| 106 | + padding: 20px; |
| 107 | + } |
| 108 | + |
| 109 | + .grid { |
| 110 | + grid-template-columns: 1fr; |
| 111 | + } |
| 112 | + } |
| 113 | + </style> |
| 114 | +</head> |
| 115 | +<body> |
| 116 | + <main class="page"> |
| 117 | + <section class="hero"> |
| 118 | + <img class="hero__banner" src="assets/brand/mutator-landing-banner.png" alt="ModularityKit.Mutator"> |
| 119 | + <div class="hero__body"> |
| 120 | + <h1>ModularityKit.Mutator</h1> |
| 121 | + <p>Mutation runtime, governance, and generated API reference for .NET.</p> |
| 122 | + <div class="links"> |
| 123 | + <a href="Docs/Home.html">Open documentation site</a> |
| 124 | + <a href="Docs/API/Reference.html">Open API reference</a> |
| 125 | + </div> |
| 126 | + </div> |
| 127 | + </section> |
| 128 | + |
| 129 | + <section class="grid" aria-label="Documentation sections"> |
| 130 | + <article class="card"> |
| 131 | + <h2>Packages</h2> |
| 132 | + <div class="links"> |
| 133 | + <a href="src/README.html">ModularityKit.Mutator</a> |
| 134 | + <a href="src/Governance/README.html">ModularityKit.Mutator.Governance</a> |
| 135 | + <a href="src/Redis/README.html">ModularityKit.Mutator.Governance.Redis</a> |
| 136 | + </div> |
| 137 | + </article> |
| 138 | + |
| 139 | + <article class="card"> |
| 140 | + <h2>Guides</h2> |
| 141 | + <div class="links"> |
| 142 | + <a href="Docs/Core-Concepts.html">Core concepts</a> |
| 143 | + <a href="Docs/ExecutionModel.html">Execution model</a> |
| 144 | + <a href="Docs/Roadmap.html">Roadmap</a> |
| 145 | + </div> |
| 146 | + </article> |
| 147 | + </section> |
| 148 | + </main> |
| 149 | +</body> |
| 150 | +</html> |
0 commit comments