embroidery-viewer/src/lib/pages/About.svelte
2025-05-09 11:09:21 -03:00

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>