Skip to content

Commit 32a2870

Browse files
committed
All pages: make header sections full viewport height
1 parent c39aaa4 commit 32a2870

7 files changed

Lines changed: 7 additions & 6 deletions

File tree

src/pages/about/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function getTeamByPageName(name: string) {
2525
export function AboutContent() {
2626
return (
2727
<>
28-
<Section pageTop bg="yellow">
28+
<Section pageTop fullHeight bg="yellow">
2929
<h1>About QuantStack</h1>
3030
<p>Founded in Paris in 2016, we are ~30 engineers and researchers who built the infrastructure layer of modern scientific computing. JupyterLab, Mamba, JupyterLite, emscripten-forge — tools reaching millions daily. Our founder received the ACM Software System Award, given to the same cohort as the creators of Unix, Java, and the World Wide Web. We do this because we believe open-source is the most powerful force for good in science and technology.</p>
3131
</Section>

src/pages/blog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import BlogGrid from "../components/Blog";
99
export default function BlogPage(): JSX.Element {
1010
return (
1111
<Layout>
12-
<Section pageTop bg="yellow">
12+
<Section pageTop fullHeight bg="yellow">
1313
<div style={{ display: "flex", alignItems: "center", gap: "12px" }}>
1414
<h1>
1515
Featured posts by QuantStack contributors

src/pages/careers.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function InterviewCard({ person }) {
5555
function CareersContent() {
5656
return (
5757
<>
58-
<Section pageTop bg="yellow">
58+
<Section pageTop fullHeight bg="yellow">
5959
<h1>Join the QuantStack team.</h1>
6060
<p>We are ~30 researchers and engineers building the infrastructure of scientific computing. Your code will reach millions of users. Your contributions will go upstream. This is not a support role — it's a principal contributor role from day one.</p>
6161
</Section>

src/pages/contact.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export default function ContactPage(): JSX.Element {
1313
<SplitSection
1414
ratio="50/50"
1515
pageTop
16+
fullHeight
1617
reverse
1718
image={
1819
<ContactIllustration

src/pages/projects.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function ProjectsContent() {
1919
return (
2020
<>
2121
{/* ── Header ────────────────────────────────────────────────────────── */}
22-
<Section pageTop bg="yellow">
22+
<Section pageTop fullHeight bg="yellow">
2323
<h1>Working in the open.</h1>
2424
<p className={styles.header_text}>
2525
From interactive environments to package managers to data formats — our tools reach

src/pages/services.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function ServicesContent() {
1515
return (
1616
<>
1717
{/* ── Header ────────────────────────────────────────────────────────── */}
18-
<Section pageTop bg="yellow">
18+
<Section pageTop fullHeight bg="yellow">
1919
<h1>Hire the team that built the tools you depend on.</h1>
2020
<p>
2121
Bloomberg, AWS, Safran, ESA, and the Gates Foundation work with us because there is

src/pages/sponsor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { MainAreaFundableProjects } from "../components/fundable";
1010
export function FundableContent() {
1111
return (
1212
<>
13-
<Section pageTop bg="yellow">
13+
<Section pageTop fullHeight bg="yellow">
1414
<h1>Sponsor open-source work</h1>
1515
<p>High-demand open-source features with detailed plans already in place — the work is scoped, the need is proven, only funding is missing. Back a project and get it shipped.</p>
1616
</Section>

0 commit comments

Comments
 (0)