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
2 changes: 2 additions & 0 deletions src/components/ArchDiagramSection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ function DiagramInner() {
<span>Maintenance</span>
<span className={styles.sep}>|</span>
<span>Scaling</span>
<span className={styles.sep}>|</span>
<span>Monitoring</span>
</div>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/components/ArchDiagramSection/styles.module.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* ─── Section — full viewport width ──────────────────────────────── */
.section {
--diagram-line: #8f8f8f;
--diagram-border: #b7b7b7;
--diagram-line: var(--color-diagram-line, #8f8f8f);
--diagram-border: var(--color-diagram-border, #b7b7b7);
width: 100vw;
min-height: 100vh;
background: var(--color-surface);
background: var(--color-bg);
border-bottom: 1px solid var(--color-border);
display: flex;
align-items: center;
Expand Down
4 changes: 2 additions & 2 deletions src/components/CLISection/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
outline: 1.5px solid transparent;
outline-offset: 0px;
background: transparent;
box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.05);
box-shadow: 6px 6px 0 var(--shadow-pixel);
text-decoration: none;
transition: border-color 0.18s ease, outline-color 0.18s ease,
background 0.18s ease,
Expand Down Expand Up @@ -139,7 +139,7 @@
background: var(--color-surface);
opacity: 1;
transform: translate(3px, 3px);
box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
box-shadow: 3px 3px 0 var(--shadow-pixel-hover);
}

.ctaArrow {
Expand Down
56 changes: 28 additions & 28 deletions src/components/SocialProofSection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,30 @@ function CalendarWithClockIcon() {
return (
<svg width="72" height="72" viewBox="0 0 72 72" fill="none" aria-hidden="true">
{/* Calendar body */}
<rect x="6" y="12" width="52" height="46" rx="4" stroke="#111" strokeWidth="2.2"/>
<rect x="6" y="12" width="52" height="46" rx="4" stroke="currentColor" strokeWidth="2.2"/>
{/* Top bar */}
<rect x="6" y="12" width="52" height="14" rx="4" fill="#111" opacity="0.07"/>
<line x1="6" y1="26" x2="58" y2="26" stroke="#111" strokeWidth="2"/>
<rect x="6" y="12" width="52" height="14" rx="4" fill="currentColor" opacity="0.07"/>
<line x1="6" y1="26" x2="58" y2="26" stroke="currentColor" strokeWidth="2"/>
{/* Ring tabs */}
<line x1="20" y1="6" x2="20" y2="18" stroke="#111" strokeWidth="2.5" strokeLinecap="round"/>
<line x1="44" y1="6" x2="44" y2="18" stroke="#111" strokeWidth="2.5" strokeLinecap="round"/>
<line x1="20" y1="6" x2="20" y2="18" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round"/>
<line x1="44" y1="6" x2="44" y2="18" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round"/>
{/* Date dots — row 1 */}
<circle cx="20" cy="34" r="2.5" fill="#ccc"/>
<circle cx="32" cy="34" r="2.5" fill="#ccc"/>
<circle cx="44" cy="34" r="2.5" fill="#ccc"/>
<circle cx="20" cy="34" r="2.5" fill="var(--color-border)"/>
<circle cx="32" cy="34" r="2.5" fill="var(--color-border)"/>
<circle cx="44" cy="34" r="2.5" fill="var(--color-border)"/>
{/* Date dots — row 2 */}
<circle cx="20" cy="43" r="2.5" fill="#ccc"/>
<circle cx="32" cy="43" r="2.5" fill="#ff5722"/>
<circle cx="44" cy="43" r="2.5" fill="#ccc"/>
<circle cx="20" cy="43" r="2.5" fill="var(--color-border)"/>
<circle cx="32" cy="43" r="2.5" fill="var(--color-primary)"/>
<circle cx="44" cy="43" r="2.5" fill="var(--color-border)"/>
{/* Date dots — row 3 */}
<circle cx="20" cy="52" r="2.5" fill="#ccc"/>
<circle cx="32" cy="52" r="2.5" fill="#ccc"/>
<circle cx="20" cy="52" r="2.5" fill="var(--color-border)"/>
<circle cx="32" cy="52" r="2.5" fill="var(--color-border)"/>

{/* Clock overlay — bottom right */}
<circle cx="52" cy="54" r="13" fill="white" stroke="#111" strokeWidth="2"/>
<line x1="52" y1="46" x2="52" y2="54" stroke="#111" strokeWidth="2" strokeLinecap="round"/>
<line x1="52" y1="54" x2="58" y2="58" stroke="#111" strokeWidth="2" strokeLinecap="round"/>
<circle cx="52" cy="54" r="2" fill="#111"/>
<circle cx="52" cy="54" r="13" fill="var(--color-bg)" stroke="currentColor" strokeWidth="2"/>
<line x1="52" y1="46" x2="52" y2="54" stroke="currentColor" strokeWidth="2" strokeLinecap="round"/>
<line x1="52" y1="54" x2="58" y2="58" stroke="currentColor" strokeWidth="2" strokeLinecap="round"/>
<circle cx="52" cy="54" r="2" fill="currentColor"/>
</svg>
);
}
Expand All @@ -37,24 +37,24 @@ function StopwatchIcon() {
return (
<svg width="72" height="72" viewBox="0 0 72 72" fill="none" aria-hidden="true">
{/* Speed lines */}
<line x1="4" y1="34" x2="14" y2="34" stroke="#ff5722" strokeWidth="2.5" strokeLinecap="round"/>
<line x1="6" y1="42" x2="16" y2="42" stroke="#ff5722" strokeWidth="2.5" strokeLinecap="round"/>
<line x1="4" y1="50" x2="14" y2="50" stroke="#ff5722" strokeWidth="2.5" strokeLinecap="round"/>
<line x1="4" y1="34" x2="14" y2="34" stroke="var(--color-primary)" strokeWidth="2.5" strokeLinecap="round"/>
<line x1="6" y1="42" x2="16" y2="42" stroke="var(--color-primary)" strokeWidth="2.5" strokeLinecap="round"/>
<line x1="4" y1="50" x2="14" y2="50" stroke="var(--color-primary)" strokeWidth="2.5" strokeLinecap="round"/>
{/* Top button */}
<rect x="30" y="4" width="12" height="6" rx="3" fill="#ff5722"/>
<rect x="30" y="4" width="12" height="6" rx="3" fill="var(--color-primary)"/>
{/* Stopwatch circle */}
<circle cx="42" cy="44" r="25" stroke="#ff5722" strokeWidth="2.5"/>
<circle cx="42" cy="44" r="25" stroke="var(--color-primary)" strokeWidth="2.5"/>
{/* Side crown/button */}
<line x1="54" y1="22" x2="60" y2="16" stroke="#ff5722" strokeWidth="2.2" strokeLinecap="round"/>
<rect x="57" y="11" width="8" height="5" rx="2" fill="#ff5722"/>
<line x1="54" y1="22" x2="60" y2="16" stroke="var(--color-primary)" strokeWidth="2.2" strokeLinecap="round"/>
<rect x="57" y="11" width="8" height="5" rx="2" fill="var(--color-primary)"/>
{/* "10" text */}
<text
x="42" y="46"
textAnchor="middle"
dominantBaseline="middle"
fontSize="20"
fontWeight="800"
fill="#111"
fill="currentColor"
fontFamily="system-ui, sans-serif"
>10</text>
{/* "MIN" text */}
Expand All @@ -64,7 +64,7 @@ function StopwatchIcon() {
dominantBaseline="middle"
fontSize="8"
fontWeight="700"
fill="#ff5722"
fill="var(--color-primary)"
letterSpacing="1"
fontFamily="system-ui, sans-serif"
>MIN</text>
Expand Down Expand Up @@ -95,8 +95,8 @@ export default function SocialProofSection() {

{/* Arrow */}
<svg className={styles.arrow} width="48" height="24" viewBox="0 0 48 24" fill="none" aria-hidden="true">
<line x1="0" y1="12" x2="40" y2="12" stroke="#ff5722" strokeWidth="2.5" strokeLinecap="round"/>
<polyline points="30,4 42,12 30,20" fill="none" stroke="#ff5722" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round"/>
<line x1="0" y1="12" x2="40" y2="12" stroke="var(--color-primary)" strokeWidth="2.5" strokeLinecap="round"/>
<polyline points="30,4 42,12 30,20" fill="none" stroke="var(--color-primary)" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round"/>
</svg>

<div className={styles.divider} />
Expand Down
5 changes: 3 additions & 2 deletions src/components/SocialProofSection/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
border: 1px solid var(--color-border);
border-radius: 2px;
background: var(--color-bg);
box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.05);
box-shadow: 8px 8px 0 var(--shadow-pixel);
transition:
border-color 0.16s ease,
box-shadow 0.16s ease;
}

.banner:hover {
border-color: var(--color-primary);
box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
box-shadow: 10px 10px 0 var(--shadow-pixel-hover);
}

/* ─── Text block ──────────────────────────────────────────────────── */
Expand Down Expand Up @@ -72,6 +72,7 @@
align-items: center;
gap: 28px;
flex-shrink: 0;
color: var(--color-text);
}

.timeBlock {
Expand Down
49 changes: 36 additions & 13 deletions src/components/TrustedByCarousel/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,32 @@ import React from 'react';
import styles from './styles.module.css';

const sponsors = [
{ name: 'Axiom', img: '/img/sponsors/axiom.png', href: 'https://axiom.trade' },
{ name: 'Awarebuildings', img: '/img/sponsors/awarebuildings.png', href: 'https://www.awarebuildings.com' },
{ name: 'Antistock', img: '/img/sponsors/antistock.png', href: 'https://antistock.io' },
{ name: 'Codefloe', img: '/img/sponsors/codefloe.png', href: 'https://codefloe.com' },
{ name: 'Edclub', img: '/img/sponsors/edclub.png', href: 'https://www.edclub.com' },
{ name: 'Fera', img: '/img/sponsors/fera.png', href: 'https://fera.ai' },
{ name: 'GS Labs', img: '/img/sponsors/gs-labs.png', href: 'https://gs-labs.ru' },
{ name: 'New Byte', img: '/img/sponsors/newbyte.png', href: 'https://newbyte.net.br' },
{ name: 'Optiwise', img: '/img/sponsors/optiwise.png', href: 'https://optiwise.nl' },
{ name: 'Postgres.AI', img: '/img/sponsors/postgresai.png', href: 'https://postgres.ai' },
{ name: 'Axiom', img: '/img/sponsors/axiom.png', darkImg: '/img/sponsors/axiom.dark.png', href: 'https://axiom.trade' },
{ name: 'Awarebuildings', img: '/img/sponsors/awarebuildings.png', darkImg: '/img/sponsors/awarebuildings.dark.png', href: 'https://www.awarebuildings.com' },
{ name: 'Antistock', img: '/img/sponsors/antistock.png', darkImg: '/img/sponsors/antistock.dark.png', href: 'https://antistock.io' },
{ name: 'Codefloe', img: '/img/sponsors/codefloe.png', darkImg: '/img/sponsors/codefloe.dark.png', href: 'https://codefloe.com' },
{ name: 'Edclub', img: '/img/sponsors/edclub.png', darkImg: '/img/sponsors/edclub.dark.png', href: 'https://www.edclub.com' },
{ name: 'Fera', img: '/img/sponsors/fera.png', darkImg: '/img/sponsors/fera.dark.png', href: 'https://fera.ai' },
{ name: 'GS Labs', img: '/img/sponsors/gs-labs.png', darkImg: '/img/sponsors/gs-labs.dark.png', href: 'https://gs-labs.ru' },
{ name: 'New Byte', img: '/img/sponsors/newbyte.png', darkImg: '/img/sponsors/newbyte.dark.png', href: 'https://newbyte.net.br' },
{ name: 'Optiwise', img: '/img/sponsors/optiwise.png', darkImg: '/img/sponsors/optiwise.dark.png', href: 'https://optiwise.nl' },
{ name: 'Postgres.AI', img: '/img/sponsors/postgresai.png', darkImg: '/img/sponsors/postgresai.dark.png', href: 'https://postgres.ai' },
{ name: 'Staffery', img: '/img/sponsors/staffery.png', href: 'https://www.staffery.com' },
{ name: 'Toncarton', img: '/img/sponsors/toncarton.png', href: 'https://www.toncarton.com' },
{ name: 'We-Manage', img: '/img/sponsors/we-manage.png', href: 'https://we-manage.de' },
{ name: 'Toncarton', img: '/img/sponsors/toncarton.png', darkImg: '/img/sponsors/toncarton.dark.png', href: 'https://www.toncarton.com' },
{ name: 'We-Manage', img: '/img/sponsors/we-manage.png', darkImg: '/img/sponsors/we-manage.dark.png', href: 'https://we-manage.de' },
];

function normalizeLogoSize(event) {
const image = event.currentTarget;
if (!image.naturalWidth || !image.naturalHeight) {
return;
}

if (image.naturalHeight / image.naturalWidth > 0.55) {
image.classList.add(styles.logoSquareAsset);
}
}

function LogoSet({ hidden = false }) {
return (
<div className={styles.logoSet} aria-hidden={hidden}>
Expand All @@ -31,10 +42,22 @@ function LogoSet({ hidden = false }) {
<img
src={sponsor.img}
alt={hidden ? '' : sponsor.name}
className={styles.logoImg}
className={`${styles.logoImg} ${sponsor.darkImg ? styles.logoLight : ''}`}
onLoad={normalizeLogoSize}
loading="lazy"
decoding="async"
/>
{sponsor.darkImg && (
<img
src={sponsor.darkImg}
alt=""
aria-hidden="true"
className={`${styles.logoImg} ${styles.logoDark}`}
onLoad={normalizeLogoSize}
loading="lazy"
decoding="async"
/>
)}
</a>
))}
</div>
Expand Down
25 changes: 25 additions & 0 deletions src/components/TrustedByCarousel/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
height: 58px;
padding: 12px 26px;
flex-shrink: 0;
position: relative;
}

.logoImg {
Expand All @@ -91,11 +92,35 @@
transition: filter 0.15s ease, opacity 0.15s ease;
}

.logoSquareAsset {
width: 72px;
max-height: none;
}

.logoLink:hover .logoImg {
filter: grayscale(40%) contrast(110%);
opacity: 0.9;
}

.logoDark {
display: none;
}

:global(html[data-theme='dark']) .logoLight {
display: none;
}

:global(html[data-theme='dark']) .logoDark {
display: block;
filter: grayscale(100%) brightness(0.88) contrast(105%);
opacity: 0.68;
}

:global(html[data-theme='dark']) .logoLink:hover .logoDark {
filter: grayscale(40%) brightness(1) contrast(105%);
opacity: 0.9;
}

@keyframes marquee {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
Expand Down
4 changes: 2 additions & 2 deletions src/components/ValuePropsSection/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
border: 1px solid var(--color-border);
border-radius: 2px;
background: var(--color-bg);
box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.05);
box-shadow: 8px 8px 0 var(--shadow-pixel);
transition:
border-color 0.16s ease,
box-shadow 0.16s ease,
Expand All @@ -37,7 +37,7 @@

.card:hover {
border-color: var(--color-primary);
box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
box-shadow: 10px 10px 0 var(--shadow-pixel-hover);
}

/* ─── Icon ────────────────────────────────────────────────────────── */
Expand Down
33 changes: 33 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ html.docs-wrapper[data-theme='light'] .theme-doc-toc-desktop {
--color-text: #111111;
--color-text-muted: #555555;
--color-border: #e0e0e0;
--color-diagram-line: #8f8f8f;
--color-diagram-border: #b7b7b7;
--shadow-pixel: rgba(0, 0, 0, 0.05);
--shadow-pixel-hover: rgba(0, 0, 0, 0.1);

--section-pt: 64px;
--section-pb: 64px;
Expand All @@ -152,6 +156,30 @@ html.docs-wrapper[data-theme='light'] .theme-doc-toc-desktop {
font-family: var(--font-base);
}

[data-theme='dark'] .landingPage {
--ifm-background-color: #11161d !important;
--ifm-background-surface-color: #11161d !important;
--ifm-font-color-base: #f9fafb;
--ifm-heading-color: #f9fafb;
--docusaurus-highlighted-code-line-bg: rgba(255, 255, 255, 0.08);

--color-bg: #11161d;
--color-bg-alt: #11161d;
--color-surface: #11161d;
--color-text: #f9fafb;
--color-text-muted: #9ca3af;
--color-border: #252a31;
--color-black: #f9fafb;
--color-muted: #6b7280;
--color-diagram-line: #6f7782;
--color-diagram-border: #4b5563;
--shadow-pixel: rgba(255, 255, 255, 0.06);
--shadow-pixel-hover: rgba(255, 255, 255, 0.11);

background-color: var(--color-bg);
color: var(--color-text);
}

.landingPage h1,
.landingPage h2,
.landingPage h3,
Expand All @@ -171,6 +199,11 @@ html.docs-wrapper[data-theme='light'] .theme-doc-toc-desktop {
background-color: var(--color-bg);
}

[data-theme='dark'] body:has(.landingPage),
[data-theme='dark'] .landingPage main {
background-color: #11161d;
}

@media (max-width: 900px) {
.landingPage {
--section-pt: 48px;
Expand Down
Loading