Skip to content

Commit 2f665eb

Browse files
committed
feat(website): add Pix mascot to hero and README
Add a decorative Pix accent to the docs homepage hero and a centered Pix header to the README, with the SVG shipped under static/assets.
1 parent 7fb2769 commit 2f665eb

5 files changed

Lines changed: 327 additions & 0 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<p align="center">
2+
<img src="pix.svg" alt="Pix, the Vulnetix AI coding assistant" width="140">
3+
</p>
4+
15
# Vulnetix CLI & GitHub Action
26

37
Automated vulnerability management for your CI/CD pipelines and development workflows.

pix.svg

Lines changed: 153 additions & 0 deletions
Loading

website/assets/css/main.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,8 @@ img, svg { display: block; max-width: 100%; }
367367
HOME PAGE — dark hero, then cream feature slabs
368368
========================================================= */
369369
.home-hero {
370+
position: relative;
371+
overflow: hidden;
370372
background:
371373
radial-gradient(ellipse at 20% 0%, rgba(102,220,200,0.28), transparent 50%),
372374
radial-gradient(ellipse at 80% 60%, rgba(102,220,200,0.12), transparent 55%),
@@ -375,6 +377,20 @@ img, svg { display: block; max-width: 100%; }
375377
text-align: center;
376378
color: var(--vx-bone);
377379
}
380+
381+
.home-hero__mascot {
382+
position: absolute;
383+
right: 6%;
384+
bottom: 24px;
385+
width: 132px;
386+
height: auto;
387+
opacity: 0.9;
388+
filter: drop-shadow(0 12px 30px rgba(102,220,200,0.28));
389+
pointer-events: none;
390+
}
391+
@media (max-width: 1024px) {
392+
.home-hero__mascot { display: none; }
393+
}
378394
.home-hero__eyebrow {
379395
font-size: 12px;
380396
font-weight: 700;

website/layouts/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
<main>
1010
<section class="home-hero">
11+
<img src="{{ "assets/pix.svg" | relURL }}" alt="" aria-hidden="true" class="home-hero__mascot">
1112
<p class="home-hero__eyebrow">Vulnetix CLI</p>
1213
<h1 class="home-hero__title">Unified vulnerability management from the command line.</h1>
1314
<p class="home-hero__sub">Remediation over discovery. Collect, assess, triage, and remediate vulnerabilities from a single CLI — designed for CI/CD and for engineers who'd rather fix than file tickets.</p>

0 commit comments

Comments
 (0)