docs: optimized examples and sdk for search (#8657)

# Which Problems Are Solved

Page title was "introduction" and the headings were missing a h2 level.
This makes it difficult to index for search, both internal and external.

# How the Problems Are Solved

* Change the page title
* Pulled all headings one level up

# Additional Changes

- Show all elements in sdk-example folder automaticalls
This commit is contained in:
mffap
2024-09-25 10:14:58 +02:00
committed by GitHub
parent aeb379e7de
commit 624fee97c0
3 changed files with 12 additions and 19 deletions

View File

@@ -8,7 +8,7 @@ export function Tile({ title, imageSource, imageSourceLight, link, external }) {
className={styles.tile}
target={external ? "_blank" : "_self"}
>
<h4>{title}</h4>
<h3>{title}</h3>
<img
className={imageSourceLight ? "hideonlight" : ""}
src={imageSource}