feat: lucide icon and latex formulas

This commit is contained in:
2026-04-25 17:04:31 +02:00
parent d1b44ad53e
commit 7268933a17
12 changed files with 78 additions and 21 deletions
+2 -3
View File
@@ -1,10 +1,11 @@
<script setup lang="ts">
import { TITLE } from '@/lib/meta'
import { stripHTML } from '@/lib/strings'
import PageFooter from '@components/PageFooter.vue'
import { onBeforeMount } from 'vue'
onBeforeMount(() => {
window.document.title = TITLE + ' — Not Found'
window.document.title = stripHTML(TITLE) + ' — Not Found'
})
</script>
@@ -14,5 +15,3 @@ onBeforeMount(() => {
<PageFooter />
</main>
</template>
<style scoped></style>