From 85867c0594cf0ea4bc4a370cbf51e6ffb53c960d Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Tue, 5 Aug 2025 19:36:30 +0200 Subject: [PATCH] feat: llms-full.txt link on hero landing Signed-off-by: David Dal Busco --- src/components/Hero/index.tsx | 9 +++++++++ src/components/Hero/styles.module.scss | 23 ++++++++++++++++++++--- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/src/components/Hero/index.tsx b/src/components/Hero/index.tsx index dc96b566..81a6332e 100644 --- a/src/components/Hero/index.tsx +++ b/src/components/Hero/index.tsx @@ -64,6 +64,15 @@ export default function Hero(): JSX.Element { > Documentation + + + llms-full.txt + diff --git a/src/components/Hero/styles.module.scss b/src/components/Hero/styles.module.scss index 34a2d888..4063b875 100644 --- a/src/components/Hero/styles.module.scss +++ b/src/components/Hero/styles.module.scss @@ -73,14 +73,31 @@ .actions { display: flex; - flex-direction: column-reverse; - gap: 1rem; + flex-direction: column; + + column-gap: 1rem; + row-gap: 1rem; @media screen and (min-width: 768px) { - flex-direction: row; + display: grid; + grid-template-columns: repeat(2, 1fr); + + row-gap: 0.65rem; } } .typing { color: var(--ifm-color-primary); } + +.llms { + display: inline-flex; + justify-content: center; + + grid-column-start: 2; + + font-size: calc(var(--ifm-font-size-base) * 0.65); + + color: var(--ifm-font-color-base); + text-decoration: underline; +}