Skip to content

Commit cb0e299

Browse files
authored
docs: update index page (#2)
1 parent 0405823 commit cb0e299

File tree

3 files changed

+163
-2
lines changed

3 files changed

+163
-2
lines changed

docs/index.md

Lines changed: 60 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ hide:
2626

2727
---
2828

29-
Open-source and permissively licensed. Bringing contributors together to empower impactful C/C++ lint projects in open source and beyond.
29+
Open-source and MIT-licensed. Bringing contributors together to empower impactful C/C++ lint projects in open source and beyond.
3030

3131
- :material-cog: **Zero Configuration**
3232

@@ -38,14 +38,72 @@ hide:
3838

3939
---
4040

41-
GitHub Actions, Pre-commit, Command Line, Docker containers – integrate anywhere your code lives.
41+
GitHub Actions, Pre-commit, Command Line, Docker containers and more – integrate anywhere your code lives.
4242

4343
</div>
4444

4545
<div class="grid" markdown>
4646

4747
</div>
4848

49+
## Trusted by developers worldwide
50+
51+
<div class="trusted-by" markdown>
52+
53+
**Join thousands of developers and organizations using cpp-linter in production**
54+
55+
<div class="logo-grid">
56+
<div class="logo-item">
57+
<img src="https://github.com/microsoft.png" alt="Microsoft" title="Microsoft">
58+
<span>Microsoft</span>
59+
</div>
60+
<div class="logo-item">
61+
<img src="https://github.com/apache.png" alt="Apache" title="Apache">
62+
<span>Apache</span>
63+
</div>
64+
<div class="logo-item">
65+
<img src="https://github.com/nasa.png" alt="NASA" title="NASA">
66+
<span>NASA</span>
67+
</div>
68+
<div class="logo-item">
69+
<img src="https://github.com/samsung.png" alt="Samsung" title="Samsung">
70+
<span>Samsung</span>
71+
</div>
72+
<div class="logo-item">
73+
<img src="https://github.com/TheAlgorithms.png" alt="TheAlgorithms" title="TheAlgorithms">
74+
<span>TheAlgorithms</span>
75+
</div>
76+
<div class="logo-item">
77+
<img src="https://github.com/Nextcloud.png" alt="Nextcloud" title="Nextcloud">
78+
<span>Nextcloud</span>
79+
</div>
80+
<div class="logo-item">
81+
<img src="https://github.com/Jupyter.png" alt="Jupyter" title="Jupyter">
82+
<span>Jupyter</span>
83+
</div>
84+
<div class="logo-item">
85+
<img src="https://github.com/CachyOS.png" alt="CachyOS" title="CachyOS">
86+
<span>CachyOS</span>
87+
</div>
88+
</div>
89+
90+
<!-- <div class="stats-grid">
91+
<div class="stat">
92+
<strong>1,000+</strong>
93+
<span>GitHub Users</span>
94+
</div>
95+
<div class="stat">
96+
<strong>20K+</strong>
97+
<span>Downloads/Month</span>
98+
</div>
99+
<div class="stat">
100+
<strong>50+</strong>
101+
<span>Contributors</span>
102+
</div>
103+
</div> -->
104+
105+
</div>
106+
49107
## Quick Start
50108

51109
=== "GitHub Actions"

docs/stylesheets/extra.css

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,107 @@ th {
8383
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
8484
}
8585

86+
/* Trusted by section styling */
87+
.trusted-by {
88+
text-align: center;
89+
padding: 3rem 0;
90+
background: var(--md-default-fg-color--lightest);
91+
margin: 3rem -1.5rem;
92+
border-radius: 1rem;
93+
}
94+
95+
.trusted-by p {
96+
font-size: 1.1rem;
97+
color: var(--md-default-fg-color--light);
98+
margin-bottom: 2rem;
99+
}
100+
101+
.logo-grid {
102+
display: grid;
103+
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
104+
gap: 2rem;
105+
margin-bottom: 3rem;
106+
padding: 0 2rem;
107+
}
108+
109+
.logo-item {
110+
display: flex;
111+
flex-direction: column;
112+
align-items: center;
113+
transition: all 0.3s ease;
114+
padding: 1rem;
115+
border-radius: 0.5rem;
116+
}
117+
118+
.logo-item:hover {
119+
transform: translateY(-4px);
120+
background: var(--md-default-bg-color);
121+
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
122+
}
123+
124+
.logo-item img {
125+
width: 60px;
126+
height: 60px;
127+
border-radius: 50%;
128+
margin-bottom: 0.5rem;
129+
filter: grayscale(100%);
130+
transition: filter 0.3s ease;
131+
}
132+
133+
.logo-item:hover img {
134+
filter: grayscale(0%);
135+
}
136+
137+
.logo-item span {
138+
font-size: 0.9rem;
139+
font-weight: 500;
140+
color: var(--md-default-fg-color--light);
141+
}
142+
143+
.stats-grid {
144+
display: grid;
145+
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
146+
gap: 2rem;
147+
padding: 0 2rem;
148+
}
149+
150+
.stat {
151+
text-align: center;
152+
}
153+
154+
.stat strong {
155+
display: block;
156+
font-size: 2rem;
157+
font-weight: 700;
158+
color: var(--md-primary-fg-color);
159+
margin-bottom: 0.5rem;
160+
}
161+
162+
.stat span {
163+
font-size: 0.9rem;
164+
color: var(--md-default-fg-color--light);
165+
text-transform: uppercase;
166+
letter-spacing: 0.5px;
167+
}
168+
169+
/* Mobile responsiveness for trusted by section */
170+
@media screen and (max-width: 768px) {
171+
.logo-grid {
172+
grid-template-columns: repeat(2, 1fr);
173+
gap: 1rem;
174+
padding: 0 1rem;
175+
}
176+
177+
.stats-grid {
178+
grid-template-columns: repeat(2, 1fr);
179+
padding: 0 1rem;
180+
}
181+
182+
.stat strong {
183+
font-size: 1.5rem;
184+
}
185+
}
186+
86187
.md-header {
87188
background-color: #4051b5;
88189
}

mkdocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ site_description: "Documentation for the cpp-linter organization."
33
site_url: "https://cpp-linter.github.io/"
44
repo_url: https://github.com/cpp-linter
55

6+
copyright: "© 2021-2025, cpp-linter"
7+
68
nav:
79
- Home: index.md
810
- Getting Started: getting-started.md

0 commit comments

Comments
 (0)