Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 60 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ hide:

---

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

- :material-cog: **Zero Configuration**

Expand All @@ -38,14 +38,72 @@ hide:

---

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

</div>

<div class="grid" markdown>

</div>

## Trusted by developers worldwide

<div class="trusted-by" markdown>

**Join thousands of developers and organizations using cpp-linter in production**

<div class="logo-grid">
<div class="logo-item">
<img src="https://github.com/microsoft.png" alt="Microsoft" title="Microsoft">
<span>Microsoft</span>
</div>
<div class="logo-item">
<img src="https://github.com/apache.png" alt="Apache" title="Apache">
<span>Apache</span>
</div>
<div class="logo-item">
<img src="https://github.com/nasa.png" alt="NASA" title="NASA">
<span>NASA</span>
</div>
<div class="logo-item">
<img src="https://github.com/samsung.png" alt="Samsung" title="Samsung">
<span>Samsung</span>
</div>
<div class="logo-item">
<img src="https://github.com/TheAlgorithms.png" alt="TheAlgorithms" title="TheAlgorithms">
<span>TheAlgorithms</span>
</div>
<div class="logo-item">
<img src="https://github.com/Nextcloud.png" alt="Nextcloud" title="Nextcloud">
<span>Nextcloud</span>
</div>
<div class="logo-item">
<img src="https://github.com/Jupyter.png" alt="Jupyter" title="Jupyter">
<span>Jupyter</span>
</div>
<div class="logo-item">
<img src="https://github.com/CachyOS.png" alt="CachyOS" title="CachyOS">
<span>CachyOS</span>
</div>
</div>

<!-- <div class="stats-grid">
<div class="stat">
<strong>1,000+</strong>
<span>GitHub Users</span>
</div>
<div class="stat">
<strong>20K+</strong>
<span>Downloads/Month</span>
</div>
<div class="stat">
<strong>50+</strong>
<span>Contributors</span>
</div>
</div> -->

</div>

## Quick Start

=== "GitHub Actions"
Expand Down
101 changes: 101 additions & 0 deletions docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,107 @@ th {
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Trusted by section styling */
.trusted-by {
text-align: center;
padding: 3rem 0;
background: var(--md-default-fg-color--lightest);
margin: 3rem -1.5rem;
border-radius: 1rem;
}

.trusted-by p {
font-size: 1.1rem;
color: var(--md-default-fg-color--light);
margin-bottom: 2rem;
}

.logo-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
padding: 0 2rem;
}

.logo-item {
display: flex;
flex-direction: column;
align-items: center;
transition: all 0.3s ease;
padding: 1rem;
border-radius: 0.5rem;
}

.logo-item:hover {
transform: translateY(-4px);
background: var(--md-default-bg-color);
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.logo-item img {
width: 60px;
height: 60px;
border-radius: 50%;
margin-bottom: 0.5rem;
filter: grayscale(100%);
transition: filter 0.3s ease;
}

.logo-item:hover img {
filter: grayscale(0%);
}

.logo-item span {
font-size: 0.9rem;
font-weight: 500;
color: var(--md-default-fg-color--light);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 2rem;
padding: 0 2rem;
}

.stat {
text-align: center;
}

.stat strong {
display: block;
font-size: 2rem;
font-weight: 700;
color: var(--md-primary-fg-color);
margin-bottom: 0.5rem;
}

.stat span {
font-size: 0.9rem;
color: var(--md-default-fg-color--light);
text-transform: uppercase;
letter-spacing: 0.5px;
}

/* Mobile responsiveness for trusted by section */
@media screen and (max-width: 768px) {
.logo-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
padding: 0 1rem;
}

.stats-grid {
grid-template-columns: repeat(2, 1fr);
padding: 0 1rem;
}

.stat strong {
font-size: 1.5rem;
}
}

.md-header {
background-color: #4051b5;
}
Expand Down
2 changes: 2 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ site_description: "Documentation for the cpp-linter organization."
site_url: "https://cpp-linter.github.io/"
repo_url: https://github.com/cpp-linter

copyright: "© 2021-2025, cpp-linter"

nav:
- Home: index.md
- Getting Started: getting-started.md
Expand Down