diff --git a/src/pages/index.module.scss b/src/pages/index.module.scss index e69de29..08fc890 100644 --- a/src/pages/index.module.scss +++ b/src/pages/index.module.scss @@ -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; + } +} diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 010cd26..e2a2f33 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -13,16 +13,40 @@ function HomepageHeader() { } +function PatchSupportNotice() { + return ( +
+
+ + Patch Support + +

+ 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. +

+ + Review OKD update guidance + +
+
+ ); +} + export default function Home(): JSX.Element { return (
+