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
Binary file not shown.
14 changes: 14 additions & 0 deletions material-overrides/assets/stylesheets/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,13 @@
background: rgba(139, 92, 246, 0.06);
}

.selector-item.active[data-color="teal"] {
border-left-color: #06b6d4;
border-left-color: oklch(0.746 0.16 232.661);
Comment thread
albertov19 marked this conversation as resolved.
background: rgba(6, 182, 212, 0.06);
background: oklch(0.746 0.16 232.661 / 0.06);
}

.selector-icon {
display: inline-flex;
align-items: center;
Expand Down Expand Up @@ -428,6 +435,13 @@
color: #8b5cf6;
}

.selector-icon--teal {
background: rgba(6, 182, 212, 0.15);
background: oklch(0.746 0.16 232.661 / 0.15);
Comment thread
albertov19 marked this conversation as resolved.
color: #06b6d4;
color: oklch(0.746 0.16 232.661);
}

.selector-text {
flex: 1;
min-width: 0;
Expand Down
44 changes: 32 additions & 12 deletions material-overrides/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,16 +129,16 @@ <h2>Start <span class="text-highlight">reviewing</span> your code</h2>
aria-controls="preview-panel"
tabindex="0"
data-index="2"
data-color="green">
<span class="selector-icon selector-icon--green">
{% include ".icons/material/source-repository.svg" %}
data-color="purple">
<span class="selector-icon selector-icon--purple">
{% include ".icons/material/console.svg" %}
</span>
<div class="selector-text">
<div class="selector-title">
Scan your entire repository
Review from the terminal
</div>
<p class="selector-desc">
Find system-wide bugs across your full codebase.
Integrate with git hooks and CI/CD pipelines.
</p>
</div>
</div>
Expand All @@ -148,16 +148,35 @@ <h2>Start <span class="text-highlight">reviewing</span> your code</h2>
aria-controls="preview-panel"
tabindex="0"
data-index="3"
data-color="purple">
<span class="selector-icon selector-icon--purple">
{% include ".icons/material/console.svg" %}
data-color="teal">
<span class="selector-icon selector-icon--teal">
{% include ".icons/material/source-pull.svg" %}
</span>
<div class="selector-text">
<div class="selector-title">
Review from the terminal
Review every pull request
</div>
<p class="selector-desc">
Integrate with git hooks and CI/CD pipelines.
Catch issues before they reach your main branch.
</p>
</div>
</div>
<div class="selector-item"
role="tab"
aria-selected="false"
aria-controls="preview-panel"
tabindex="0"
data-index="4"
data-color="green">
<span class="selector-icon selector-icon--green">
{% include ".icons/material/source-repository.svg" %}
</span>
<div class="selector-text">
<div class="selector-title">
Scan your entire repository
</div>
<p class="selector-desc">
Find system-wide bugs across your full codebase.
</p>
</div>
</div>
Expand Down Expand Up @@ -237,8 +256,9 @@ <h3><span class="twemoji lg middle">{% include ".icons/material/wrench-outline.s
var previews = [
"{{ 'assets/images/homepage-manualreview.webm' | url }}",
"{{ 'assets/images/homepage-aiautoreview.webm' | url }}",
"{{ 'assets/images/homepage-reporeviews.webm' | url }}",
"{{ 'assets/images/homepage-klustercli.webm' | url }}"
"{{ 'assets/images/homepage-klustercli.webm' | url }}",
"{{ 'assets/images/homepage-prreviews.webm' | url }}",
"{{ 'assets/images/homepage-reporeviews.webm' | url }}"
];

items.forEach(function(item) {
Expand Down
2 changes: 1 addition & 1 deletion material-overrides/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

{% block announce %}
<p>
🚀 New: Connect Jira to kluster.ai and review code against your ticket requirements. <a href="/code-reviews/external-knowledge/quickstart/">Get started</a>.
🚀 New: Automated <a href="/code-reviews/pr-reviews/quickstart/">PR Reviews</a> for GitHub, GitLab, Bitbucket, and Azure DevOps — available on the Enterprise plan. <a href="mailto:sales@kluster.ai">Contact us</a> to get started.
</p>
{% endblock %}

Expand Down