Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
kw1knode authored Jan 1, 2025
1 parent b8f091d commit bd3f6a8
Showing 1 changed file with 91 additions and 3 deletions.
94 changes: 91 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,98 @@
<html>
<head>
<title>Nodeify Helm Charts</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
margin: 0;
padding: 40px;
background: #000;
color: #fff;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.container {
max-width: 800px;
width: 100%;
text-align: center;
}
h1 {
font-size: 3em;
margin-bottom: 0.5em;
letter-spacing: -1px;
}
.description {
font-size: 1.2em;
color: #888;
margin-bottom: 2em;
}
pre {
background: #111;
padding: 20px;
border-radius: 8px;
overflow-x: auto;
font-size: 1.1em;
margin: 2em 0;
}
code {
color: #fff;
}
.charts {
margin: 3em 0;
padding: 2em;
background: #111;
border-radius: 8px;
text-align: left;
}
.charts h2 {
margin-top: 0;
color: #fff;
}
.chart-item {
margin: 1em 0;
padding: 1em;
border: 1px solid #333;
border-radius: 4px;
}
.chart-name {
font-weight: bold;
color: #fff;
}
.chart-description {
color: #888;
margin-top: 0.5em;
}
footer {
margin-top: 3em;
color: #666;
font-size: 0.9em;
}
</style>
</head>
<body>
<h1>Nodeify Helm Charts</h1>
<p>This is a Helm chart repository. To use it:</p>
<pre>helm repo add nodeify https://nodeify-eth.github.io/helm-charts</pre>
<div class="container">
<h1>Nodeify Helm Charts</h1>
<p class="description">Official Helm repository for Nodeify's blockchain tools and services</p>

<pre><code>helm repo add nodeify https://nodeify-eth.github.io/helm-charts
helm repo update
helm install indexer-tools nodeify/indexer-tools</code></pre>

<div class="charts">
<h2>Available Charts</h2>
<div class="chart-item">
<div class="chart-name">indexer-tools</div>
<div class="chart-description">Toolset for blockchain data indexing and management</div>
</div>
</div>

<footer>
<p>Maintained by Nodeify | <a href="https://github.com/nodeify-eth/helm-charts" style="color: #666;">GitHub Repository</a></p>
</footer>
</div>
</body>
</html>

0 comments on commit bd3f6a8

Please sign in to comment.