From dbf8df7ebb9d2950799eccdef7b5bced2724fca1 Mon Sep 17 00:00:00 2001 From: Lucas-FManager <265058144+Lucas-FManager@users.noreply.github.com> Date: Thu, 28 May 2026 02:05:41 +0700 Subject: [PATCH] Add homepage patch support notice --- src/pages/index.module.scss | 14 ++++++++++++++ src/pages/index.tsx | 28 ++++++++++++++++++++++++++-- 2 files changed, 40 insertions(+), 2 deletions(-) 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 (
+