Skip to content

Commit 5c7181f

Browse files
feat: add page seo
1 parent 3beffa9 commit 5c7181f

2 files changed

Lines changed: 17 additions & 5 deletions

File tree

app.vue

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@ import "@fontsource/inter/600.css";
66
import "@fontsource/inter/700.css";
77
import "@fontsource/inter/800.css";
88
import "@fontsource/inter/900.css";
9-
10-
useSeoMeta({
11-
title: "cosmify.dev",
12-
ogTitle: "Cosmify",
13-
});
149
</script>
1510

1611
<template>

nuxt.config.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,23 @@ export default defineNuxtConfig({
88
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
99
},
1010
},
11+
seo: {
12+
meta: {
13+
description: "Own Your Platform. Self-Host Your PaaS with Cosmify.",
14+
themeColor: [
15+
{ content: "#18181b", media: "(prefers-color-scheme: dark)" },
16+
{ content: "white", media: "(prefers-color-scheme: light)" },
17+
],
18+
author: "Alexander Padberg <undefinedhuman>",
19+
colorScheme: "dark light",
20+
applicationName: "Cosmify",
21+
ogSiteName: "Cosmify",
22+
ogLocale: "en_US",
23+
ogType: "website",
24+
ogUrl: "https://cosmify.dev",
25+
ogTitle: "Cosmify",
26+
},
27+
},
1128
site: {
1229
url: "https://cosmify.dev",
1330
name: "Cosmify Documentation",

0 commit comments

Comments
 (0)