-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (50 loc) · 2.58 KB
/
Copy pathindex.html
File metadata and controls
56 lines (50 loc) · 2.58 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
---
layout: default
title: "Projects — nitrocode"
description: "Notable projects and open-source contributions by nitrocode."
---
<!-- Header -->
<header class="pt-32 pb-16 px-6 border-b border-slate-800">
<div class="max-w-6xl mx-auto">
<p class="font-mono text-sky-400 text-sm mb-3 tracking-widest uppercase">Things I've shipped</p>
<h1 class="text-4xl sm:text-5xl font-extrabold mb-4">Projects</h1>
<p class="text-slate-400 text-lg max-w-xl">Open-source contributions, side projects, and production systems.</p>
</div>
</header>
<!-- Projects Grid -->
<main class="py-20 px-6">
<div class="max-w-6xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- OpenTofu Registry -->
<div class="bg-slate-900 border border-slate-800 rounded-2xl p-6 flex flex-col">
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs font-mono bg-slate-800 text-sky-400 px-2 py-1 rounded">Infrastructure</span>
<span class="text-xs font-mono bg-slate-800 text-sky-400 px-2 py-1 rounded">Open Source</span>
</div>
<h2 class="text-lg font-bold mb-2">OpenTofu Release Registry</h2>
<p class="text-slate-400 text-sm leading-relaxed flex-1 mb-6">
A static emulation of the Terraform version registry for OpenTofu, enabling Go and
other language SDKs to resolve release artifacts without breaking existing integrations.
</p>
<div class="flex gap-3">
<a href="/blog/opentofu-registry/"
class="text-sm font-medium text-sky-400 hover:underline">Case study →</a>
<a href="/opentofu/"
class="text-sm font-medium text-slate-400 hover:text-slate-200 transition-colors">Live registry →</a>
</div>
</div>
<!-- Placeholder cards -->
<div class="bg-slate-900/40 border border-dashed border-slate-800 rounded-2xl p-6 flex flex-col items-center justify-center text-center">
<div class="text-3xl mb-3">🚧</div>
<p class="text-slate-500 text-sm">More projects coming soon.</p>
</div>
<div class="bg-slate-900/40 border border-dashed border-slate-800 rounded-2xl p-6 flex flex-col items-center justify-center text-center">
<div class="text-3xl mb-3">💡</div>
<p class="text-slate-500 text-sm">
See all repos on
<a href="https://github.com/nitrocode" target="_blank" rel="noopener" class="text-sky-400 hover:underline">GitHub ↗</a>
</p>
</div>
</div>
</div>
</main>