mirror of
https://github.com/imputnet/cobalt.git
synced 2025-07-01 02:48:28 +00:00

- omnibox is now fully usable with a screen reader - back button is now interpreted as such - subtext now accepts line breaks
14 lines
275 B
Svelte
14 lines
275 B
Svelte
<script>
|
|
import { t } from "$lib/i18n/translations";
|
|
|
|
import Placeholder from "$components/misc/Placeholder.svelte";
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>
|
|
{$t("general.cobalt")}: {$t("tabs.about")}
|
|
</title>
|
|
</svelte:head>
|
|
|
|
<Placeholder pageName="about" />
|