Skip to content

Commit

Permalink
feat: Update SEO meta tags and remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin3go committed Feb 21, 2024
1 parent 40ff860 commit ad0dff7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
4 changes: 0 additions & 4 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ export default defineNuxtConfig({
],
meta: [
{ name: 'description', content: 'Collecting the highest quality prompts for Sora, providing creators, researchers, and technology enthusiasts with a tool for sharing, exploring, and discovering the latest Sora video creations.' },
{ property: 'og:description', content: 'Collecting the highest quality prompts for Sora, providing creators, researchers, and technology enthusiasts with a tool for sharing, exploring, and discovering the latest Sora video creations.' },
{ property: 'og:title', content: 'UseSora' },
{ property: 'og:image', content: 'https://usesora.app/logobg.png' },
{ property: 'twitter:card', content: 'summary' },
],
}
},
Expand Down
29 changes: 17 additions & 12 deletions pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
<template>
<div class="px-lg-16 mx-lg-16 px-md-8 mx-md-8">
<main>
<HomeList></HomeList>
</main>
<footer>
<HomeFooter></HomeFooter>
</footer>
</div>
<div class="px-lg-16 mx-lg-16 px-md-8 mx-md-8">
<main>
<HomeList></HomeList>
</main>
<footer>
<HomeFooter></HomeFooter>
</footer>
</div>
</template>

<script lang="ts" setup>
useSeoMeta({
ogTitle: "UseSora",
ogDescription: `Collecting the highest quality prompts for Sora, providing creators, researchers, and technology enthusiasts with a tool for sharing, exploring, and discovering the latest Sora video creations.`,
ogImage: "https://usesora.app/logobg.png'",
twitterCard: "summary",
});
</script>

<style lang="scss" scoped>
main {
min-width: 888px;
min-height: calc(100vh - 60px);
min-width: 888px;
min-height: calc(100vh - 60px);
}
</style>
</style>

0 comments on commit ad0dff7

Please sign in to comment.