Skip to content

Commit ab8b2ab

Browse files
Merge pull request #3 from helmhub-io/helm-hub-mag
Helm hub mag
2 parents eba37b9 + 3b21e63 commit ab8b2ab

File tree

10 files changed

+44
-23
lines changed

10 files changed

+44
-23
lines changed

Team.html

Whitespace-only changes.

about.html

Whitespace-only changes.

assets/logo/helm-white-fav.png

40.3 KB
Loading

assets/logo/helm-white.png

79 KB
Loading

assets/logo/helm.png

116 KB
Loading

blog.html

Whitespace-only changes.

docs.html

Whitespace-only changes.

guide.html

Whitespace-only changes.

index.html

Lines changed: 34 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>HelmHub</title>
77
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
8+
9+
<link rel="icon" type="image/x-icon" href="/website-frontend/assets/logo/helm-white-fav.png">
810
<link rel="stylesheet" href="style.css">
11+
912
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
1013
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> -->
1114
</head>
@@ -14,13 +17,18 @@
1417
<div class="container">
1518
<div class="nav-container">
1619
<div class="nav-left">
17-
<a href="#" class="logo">HelmHub</a>
20+
<img src="/website-frontend/assets/logo/helm-white.png" alt="" class="logo">
21+
<a href="#" class="logo">HelmHub.IO</a>
22+
<a href="#" class="nav-link">About</a>
23+
<a href="#" class="nav-link">Blog</a>
24+
<a href="#" class="nav-link">Docs</a>
25+
<a href="#" class="nav-link">Team</a>
1826
<a href="#" class="nav-link">Guide</a>
1927
<a href="#" class="nav-link">Blog</a>
2028
</div>
2129
<div class="nav-right">
2230
<button class="theme-toggle" onclick="toggleTheme()">
23-
<i class="fa fa-moon-o" id="theme-icon"></i>
31+
<i class="fa fa-shield" aria-hidden="true"></i>
2432
</button>
2533
<a href="https://github.com/helmhub/helmhub" class="github-link">
2634
<i class="fa fa-github"></i>
@@ -43,26 +51,36 @@
4351
<header>
4452
<div class="container">
4553
<h1>HelmHub.io</h1>
46-
<p class="subtitle">Your Kubernetes Helm Chart Repository</p>
54+
<p class="subtitle">Your Kubernetes Helm Chart Repository, Maintained By A Community Of Passionate Engineers</p>
55+
56+
4757
</div>
4858
</header>
4959

5060
<section class="hero">
5161
<div class="container">
52-
<h2>The Kubernetes Package Manager</h2>
62+
63+
64+
<h2>Why Choose HelmHub Charts?</h2>
5365
<p>Find, install and publish Kubernetes packages with the upcoming world's largest repository of Helm charts.</p>
54-
<div class="hero-stats">
55-
<div class="stat">
56-
<span class="stat-number">Only God Knows</span>
57-
<span class="stat-label">Charts</span>
58-
</div>
59-
<div class="stat">
60-
<span class="stat-number">Only God Knows</span>
61-
<span class="stat-label">Downloads</span>
62-
</div>
63-
<div class="stat">
64-
<span class="stat-number">Only God Knows</span>
65-
<span class="stat-label">Contributors</span>
66+
67+
68+
<div class="hero-why">
69+
70+
<div class="why">
71+
<i class="fa fa-lock fa-4x" aria-hidden="true"></i>
72+
<h3>Secure</h3>
73+
<p>Choose from a large repo of Secure charts</p>
74+
</div>
75+
<div class="why">
76+
<i class="fa fa-wrench fa-4x" aria-hidden="true"></i>
77+
<h3> Flexible </h3>
78+
<p>Choose the chart that best suite your project</p>
79+
</div>
80+
<div class="why">
81+
<i class="fa fa-users fa-4x" aria-hidden="true"></i>
82+
<h3>Community-based support </h3>
83+
<p>Choose from a large and supportive community</p>
6684
</div>
6785
</div>
6886
<div class="hero-buttons">

style.css

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
/* Global Styles */
66
:root {
77
--text-primary: #000000;
8-
--text-secondary: #6c757d;
8+
--text-secondary: #36414d;
99
--nav-bg: #1e3a8a;
1010
--body-bg: transparent;
11-
--card-bg: #ffffff;
11+
--card-bg: #c9c7c7;
1212
}
1313

1414
:root[data-theme="dark"] {
@@ -32,7 +32,7 @@ body {
3232
/* Navigation */
3333
nav { background: var(--nav-bg); padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
3434
.nav-container { display: flex; justify-content: space-between; align-items: center; }
35-
.nav-left { display: flex; align-items: center; gap: 2rem; }
35+
.nav-left { display: flex; align-items: center; gap: 3rem; justify-content: space-evenly;}
3636
.nav-right { display: flex; align-items: center; gap: 1rem; }
3737
.logo { color: white; font-size: 1.5rem; font-weight: bold; text-decoration: none; }
3838
.nav-link { color: white; text-decoration: none; transition: color 0.3s; }
@@ -50,17 +50,20 @@ nav { background: var(--nav-bg); padding: 1rem 0; position: sticky; top: 0; z-in
5050

5151
/* Header */
5252
header { background: var(--nav-bg); color: white; padding: 2rem 0; text-align: center; }
53-
h1 { font-size: 3rem; margin-bottom: 1rem; }
53+
h1 { font-size: 3rem; margin-bottom: 2rem; }
5454
.subtitle { font-size: 1.2rem; opacity: 0.9; }
55+
/* logo */
56+
img.logo{ width: 4rem; height:4rem; }
5557

5658
/* Hero Section */
5759
.hero { padding: 4rem 0; text-align: center; }
5860
.hero h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--text-primary); }
61+
.hero-why h3{ margin-bottom: 1.3rem; color: #1e40af;}
5962
.hero p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; }
60-
.hero-stats { display: flex; justify-content: center; gap: 3rem; margin: 2rem 0; }
63+
.hero-why { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
6164
.stat { text-align: center; }
62-
.stat-number { display: block; font-size: 2rem; font-weight: bold; color: #1e3a8a; }
63-
.stat-label { font-size: 0.9rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
65+
.stat-number { display: block; font-size: 1rem; font-weight: bold; color: #1e3a8a; }
66+
.stat-label { font-size: 1rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
6467
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
6568
.btn { display: inline-block; background: #1e3a8a; color: white; padding: 12px 30px; text-decoration: none; border-radius: 5px; font-weight: 500; transition: background 0.3s; }
6669
.btn:hover { background: #1e40af; }

0 commit comments

Comments
 (0)