From fb7eaff29c46155788ed7457fd3118a56810d727 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Thu, 16 Apr 2026 13:46:09 +0200 Subject: [PATCH] feat: link to ai tools on homepage Signed-off-by: David Dal Busco --- src/components/Hero/index.tsx | 17 +++++++++-------- src/components/Hero/styles.module.scss | 16 +++++++++++++--- 2 files changed, 22 insertions(+), 11 deletions(-) diff --git a/src/components/Hero/index.tsx b/src/components/Hero/index.tsx index 09394aeb..b94a99b8 100644 --- a/src/components/Hero/index.tsx +++ b/src/components/Hero/index.tsx @@ -40,14 +40,15 @@ export default function Hero(): JSX.Element { Documentation - - llms-full.txt - +
+ + llms-full.txt + + ยท + + AI tools + +
diff --git a/src/components/Hero/styles.module.scss b/src/components/Hero/styles.module.scss index d1b426db..7a307d43 100644 --- a/src/components/Hero/styles.module.scss +++ b/src/components/Hero/styles.module.scss @@ -98,14 +98,24 @@ font-weight: bold; } -.llms { +.ai { display: inline-flex; justify-content: center; + gap: 0.25rem; grid-column-start: 2; + padding: 0.15rem 0 0; + font-size: calc(var(--ifm-font-size-base) * 0.65); - color: var(--ifm-font-color-base); - text-decoration: underline; + a { + color: var(--ifm-font-color-base); + text-decoration: underline; + + &:hover, + &:active { + color: var(--ifm-link-color); + } + } }