Skip to content
Open
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
14 changes: 14 additions & 0 deletions src/pages/index.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.patchSupport {
background: var(--ifm-color-emphasis-100);
border-block: 1px solid var(--ifm-color-emphasis-300);
padding-block: 2rem;

h2 {
margin-bottom: 0.5rem;
}

p {
font-size: 1.05rem;
max-width: 760px;
}
}
28 changes: 26 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,40 @@ function HomepageHeader() {

}

function PatchSupportNotice() {
return (
<section className={styles.patchSupport} aria-labelledby="patch-support-title">
<div className="container">
<Heading as="h2" id="patch-support-title">
Patch Support
</Heading>
<p>
OKD publishes community patch releases through the stable update
channel after release verification passes. Not every patch number is
produced, so use the cluster update graph and the latest stable OKD
release when planning upgrades.
</p>
<a
className="button button--primary"
href="https://docs.okd.io/latest/updating/index.html">
Review OKD update guidance
</a>
</div>
</section>
);
}

export default function Home(): JSX.Element {
return (
<Layout
title={`Kubernetes at Scale on any Infrastructure`}
description="Bringing together 100+ components to provide comprehensive
tooling for administrators and developers, we've made choices so you
don't have to. Deploy in-cloud or on-prem and join a community
tooling for administrators and developers, we've made choices so you
don't have to. Deploy in-cloud or on-prem and join a community
embracing the latest in cloud emerging technologies.">
<HomepageHero />
<main>
<PatchSupportNotice />
<HomepageSoWhatIsOKD/>
<HomepageFeatures />
<HomagepageInsideOKD />
Expand Down