29 lines
No EOL
418 B
Svelte
29 lines
No EOL
418 B
Svelte
<script>
|
|
import { t } from "../../i18n"
|
|
|
|
</script>
|
|
<section aria-labelledby="about-heading">
|
|
<h1 id="about-heading">{$t('about.title')}</h1>
|
|
|
|
{@html $t("about.content")}
|
|
|
|
</section>
|
|
|
|
<style>
|
|
section {
|
|
width: 70%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
|
|
h1 {
|
|
padding: 0;
|
|
margin-bottom: 7px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
section {
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style> |