# H1 Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
## H2 Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
### H3 Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
#### H4 Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
##### H5 Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
###### H6 Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
This page is a so-called "kitchen sink", meaning it shows all the possible UI elements that editors can use inside our website. This is still a work in progress. Come back to see what's new.
> Für uns war immer klar: So macht man ein Zitat!
# Markdown
All default Markdown elements are supported. Please check a Markdown documentation or [cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) if you want to know more about the features of Markdown:
- Headlines
- Lists (ordered, unordered)
- Blockquotes
- Bold, Italique text formatting
- Code blocks
- Images
## Internal links
To link to any other page inside of our site, please use a regular Markdown link, but in a **relative URL**, e.g. something like this: `[My Link](en/blog/my-blogpost)`
## Markdown images
You can use default markdown images like this: ``
<Image img="images/home/nasa-Q1p7bh3SHj8-unsplash_fchh.jpg" caption="This is a Caption. Write something here" subCaption="And this is a subcaption for the Author/Rights information" />
## Button
Technically it's a link, but it looks like a button:
<Accordion title="Enabling a data-based circular economy">
The Fab City concept provides a promising pathway towards a more resilient and
ecological mode of production and consumption. Globally connected cities and
regions share data, information and know-how and collaborate on the
development of physical goods in the form of Open Source Hardware, whereas the
creation, repair and recycling of those physical goods and artifacts happens
in the local sphere close to the place of need and by means of digital
production technologies, e.g. freely accessible in Fab Labs.
</Accordion>
## Tabs
<Tabs
className="not-prose"
client:only="react"
entries={[
{ label: "Tab 1", content: "This is the content of tab 1" },
{ label: "Tab 2", content: "This is the content of tab 2" },
{ label: "Tab 3", content: "This is the content of tab 3" },
]}
/>
## Member (single Use)
<Member
image="https://picsum.photos/id/1005/500/500"
name="Max Mustermann"
position="CEO"
email="max@musterfirma.de"
linkedin="https://www.google.de"
twitter="https://www.google.de"
className="not-prose"
/>
<Member
image="https://picsum.photos/id/1005/500/500"
name="Max Mustermann"
position="CEO"
email="max@musterfirma.de"
linkedin="https://www.google.de"
twitter="https://www.google.de"
className="not-prose"
/>
# People (multi-use)
For people that are mentioned multiple times on the website, we can create a "profile" under `pages/de/people/{name}.mdx`. Then we can use them easily via the `<People>` component: `<People names={["jenny", "michael"]} />`