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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 13 additions & 1 deletion src/pages/bpfcompat/BpfcompatPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { buildSoftwareSourceCodeSchema } from '../../lib/schema';
import { BpStringsProvider, getBpStrings } from './content';
import {
Chip, HeroCtas, MatrixTerminal, CompatibilityMatrix, Legend, HowItWorks,
ProblemCards, AdoptionTabs, InstallSection, CoverageSection, RepoEvidence, ScopePanel, ToolchainBand,
ProblemCards, AdoptionTabs, InstallSection, CoverageSection, LibrarySection, RepoEvidence, ScopePanel, ToolchainBand,
Reveal, BigStat, DocsSection, ProjectBreadcrumb, FinalCtaWithDocs,
WhyBuilt, ComparisonTable,
Kicker, Caret, GITHUB_URL, DEMO_URL, REPORT,
Expand Down Expand Up @@ -164,6 +164,18 @@ export default function BpfcompatPage() {
</div>
</section>

{/* 5c — library mode: validate before you load */}
<section className="py-24 md:py-28 bg-surface border-b border-border">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<Reveal className="text-center max-w-2xl mx-auto mb-14">
<Kicker className="mb-5">{t.library.eyebrow}</Kicker>
<h2 className="text-3xl md:text-5xl font-light text-foreground tracking-tight">{t.library.heading}</h2>
<p className="mt-5 text-lg font-light text-foreground/70 leading-relaxed">{t.library.subline}</p>
</Reveal>
<Reveal delayMs={120}><LibrarySection /></Reveal>
</div>
</section>

{/* 6 — the evidence / matrix */}
<section className="py-24 md:py-28 border-b border-border">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
Expand Down
Loading
Loading