Skip to content

Commit

Permalink
update seoMeta
Browse files Browse the repository at this point in the history
  • Loading branch information
numselli committed Jul 14, 2024
1 parent 37f629c commit 20720e2
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 81 deletions.
8 changes: 0 additions & 8 deletions src/components/Home/Intro.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,3 @@
</p> -->
</div>
</template>

<script setup>
useSeoMeta({
title: "numselli",
description:
"I'm Fayaz, your friendly neighborhood software, product engineer and designer from Bengaluru, India. I specialize in building web applications and sites using Javascript, React, Vue & Node.",
});
</script>
118 changes: 58 additions & 60 deletions src/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,70 +1,68 @@
export default defineNuxtConfig({
extends: ['nuxt-umami'],
devtools: { enabled: true },
extends: ['nuxt-umami'],
devtools: { enabled: true },
modules: [
"@nuxt/ui",
"nuxt-icon",
"@nuxtjs/google-fonts",
"@nuxtjs/fontaine",
"@nuxt/image",
"@nuxt/content",
"@nuxthq/studio",
"@vueuse/nuxt",
"@nuxtjs/seo"
],

modules: [
"@nuxt/ui",
"nuxt-icon",
"@nuxtjs/google-fonts",
"@nuxtjs/fontaine",
"@nuxt/image",
"@nuxt/content",
"@nuxthq/studio",
"@vueuse/nuxt",
"@nuxtjs/seo"
],
seo: {
"automaticDefaults": true,
},

seo: {

"automaticDefaults":true,
},
site: {
url: "https://numselli.xyz"
},

site: {
url: "https://numselli.xyz"
},
ui: {
icons: ["heroicons", "lucide"],
},

ui: {
icons: ["heroicons", "lucide"],
},
app: {
pageTransition: { name: "page", mode: "out-in" },
head: {
htmlAttrs: {
lang: "en",
class: "h-full",
},
bodyAttrs: {
class: "antialiased bg-gray-50 dark:bg-black min-h-screen",
},
},
},

app: {
pageTransition: { name: "page", mode: "out-in" },
head: {
htmlAttrs: {
lang: "en",
class: "h-full",
},
bodyAttrs: {
class: "antialiased bg-gray-50 dark:bg-black min-h-screen",
},
},
},
content: {
highlight: {
theme: "github-dark",
},
documentDriven: true
},

content: {
highlight: {
theme: "github-dark",
},
documentDriven: true
},
googleFonts: {
display: "swap",
families: {
Inter: [400, 500, 600, 700, 800, 900],
},
},

googleFonts: {
display: "swap",
families: {
Inter: [400, 500, 600, 700, 800, 900],
},
},
appConfig: {
umami: {
id: '8d5dabea-9c89-4d2f-9ce1-84c7b18758c7',
host: 'https://insights.numselli.xyz/',
version: 2,
ignoreDnt: true,
useDirective: true,
customEndpoint: '/',
ignoreLocalhost: true
}
},

appConfig: {
umami: {
id: '8d5dabea-9c89-4d2f-9ce1-84c7b18758c7',
host: 'https://insights.numselli.xyz/',
version: 2,
ignoreDnt: true,
useDirective: true,
customEndpoint: '/',
ignoreLocalhost: true
}
},

compatibilityDate: "2024-07-12"
compatibilityDate: "2024-07-12"
});
11 changes: 4 additions & 7 deletions src/pages/bookmarks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,9 @@
</template>

<script setup>
const description =
"Awesome things I've found on the internet. This page is still WIP, I want to add search like bmrks.com";
// useSeoMeta({
// title: "Bookmarks | numselli",
// description,
// });
useSeoMeta({
description: "A collection of useful links.",
});
// https://www.themindfulword.org/law-of-reverse-effect
Expand All @@ -52,7 +49,7 @@ const description =
// https://what3words.com/clip.apples.leap
const categories = {
"h":[
"Providing Chat Suport Resources":[
{
id: 1,
label: "Dont Ask to Ask",
Expand Down
9 changes: 9 additions & 0 deletions src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,12 @@
</main>
</UContainer>
</template>


<script setup>
useSeoMeta({
// icon: '/avatar.png',
// title: "Pts",
// description: "",
});
</script>
10 changes: 4 additions & 6 deletions src/pages/projects/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@
</template>

<script setup>
// const description =
// "I’ve worked on tons of little projects over the years but these are the ones that I’m most proud of. Many of them are open-source, so if you see something that piques your interest, check out the code and contribute if you have ideas for how it can be improved.";
// useSeoMeta({
// title: "Projects | numselli",
// description,
// });
useSeoMeta({
title: "Projects",
description: "Most of the projects I have worked on.",
});
const { data: projects } = await useAsyncData("projects-all", () =>
queryContent("/projects").find()
Expand Down

0 comments on commit 20720e2

Please sign in to comment.