Skip to content

Commit

Permalink
feat: Update app.vue with SEO meta tags
Browse files Browse the repository at this point in the history
- Add SEO meta tags for title, ogTitle, description, and ogDescription
- Uncomment ogImage and twitterCard properties for future use
  • Loading branch information
ItsukiKigoshi committed Feb 7, 2025
1 parent 6e7f4e1 commit c0225f7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
<script setup lang="ts">
useSeoMeta({
title: '東雲文庫/Shinonome Bunko',
ogTitle: '東雲文庫/Shinonome Bunko',
description:
'OCR&Git-powered Kosakuin (Contributor) for Aozora Bunko. / 青空文庫の耕作に貢献するべく,OCR技術を用いたテキスト電子化を試みる極めて私的なプロジェクト.',
ogDescription:
'OCR&Git-powered Kosakuin (Contributor) for Aozora Bunko. / 青空文庫の耕作に貢献するべく,OCR技術を用いたテキスト電子化を試みる極めて私的なプロジェクト.'
// ogImage: 'https://example.com/image.png',
// twitterCard: 'summary_large_image',
});
</script>
<template>
<NuxtLayout>
<v-responsive class="border rounded">
Expand Down

0 comments on commit c0225f7

Please sign in to comment.