Skip to content

Commit dec87dc

Browse files
committed
Add use cases footer
1 parent 51a0c41 commit dec87dc

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

site/src/pages/_sections/UseCasesSection/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import styles from './styles.module.css';
22

33
import Heading from '@theme/Heading';
44

5+
import Link from '@docusaurus/Link';
56
import { ImageGeneration } from './components/image-generation';
67
import { ImageProcessing } from './components/image-processing';
78
import { SpeechRecognition } from './components/speech-recognition';
@@ -18,5 +19,9 @@ export const UseCasesSection = () => (
1819
<SpeechRecognition />
1920
<ImageProcessing />
2021
</div>
22+
<div className={styles.useCasesFooter}>
23+
<strong>Looking for more?</strong>&nbsp;See all{' '}
24+
<Link to="docs/category/use-cases">supported use cases</Link>.
25+
</div>
2126
</section>
2227
);

site/src/pages/_sections/UseCasesSection/styles.module.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,12 @@
1313
flex-direction: column;
1414
gap: 2rem;
1515
}
16+
17+
.useCasesFooter {
18+
margin-top: 1.5rem;
19+
font-size: 1rem;
20+
21+
strong {
22+
font-weight: 600;
23+
}
24+
}

0 commit comments

Comments
 (0)