Skip to content

Commit ea8f854

Browse files
committed
chore: add page titles
1 parent 9bf7d41 commit ea8f854

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

apps/frontend/src/app/pages/index.vue

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<script setup lang="ts">
22
defineOgImage("Basic.takumi");
3+
4+
useSeoMeta({
5+
title: "url shortener - solitar",
6+
ogTitle: "url shortener - solitar",
7+
twitterTitle: "url shortener - solitar",
8+
description: "Create short URLS for your website and social media pages in seconds",
9+
ogDescription: "Create short URLS for your website and social media pages in seconds",
10+
twitterDescription: "Create short URLS for your website and social media pages in seconds",
11+
});
312
</script>
413

514
<template>

apps/frontend/src/app/pages/qr.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ import { useQRCode } from "@vueuse/integrations/useQRCode";
33
import { type } from "arktype";
44
55
defineOgImage("Basic.takumi", { subtitle: "./qr", description: "Generate QR code for url" });
6+
useSeoMeta({
7+
title: "qr code generator - solitar",
8+
ogTitle: "qr code generator - solitar",
9+
twitterTitle: "qr code generator - solitar",
10+
description: "Create QR code for your URLS in seconds, save and share it immediately",
11+
ogDescription: "Create QR code for your URLS in seconds, save and share it immediately",
12+
twitterDescription: "Create QR code for your URLS in seconds, save and share it immediately",
13+
});
614
715
const permission = usePermission("clipboard-read");
816
const inputUrl = ref();

apps/frontend/src/app/pages/settings.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ defineOgImage("Basic.takumi", {
33
subtitle: "./settings",
44
description: "customize your solitar experience",
55
});
6+
useSeoMeta({
7+
title: "settings - Solitar",
8+
ogTitle: "settings - Solitar",
9+
twitterTitle: "settings - Solitar",
10+
description: "Create QR code for your URLS in seconds, save and share it immediately",
11+
ogDescription: "Create QR code for your URLS in seconds, save and share it immediately",
12+
twitterDescription: "Create QR code for your URLS in seconds, save and share it immediately",
13+
});
614
</script>
715

816
<template>

0 commit comments

Comments
 (0)