🔍 Improve SEO and User Experiences
This commit is contained in:
parent
4464c6557a
commit
1cc5b72cb9
10
app.vue
10
app.vue
@ -14,6 +14,16 @@ import "@unocss/reset/tailwind.css"
|
|||||||
const theme = useTheme()
|
const theme = useTheme()
|
||||||
const auth = useUserinfo()
|
const auth = useUserinfo()
|
||||||
|
|
||||||
|
const { locale } = useI18n()
|
||||||
|
|
||||||
|
watch(locale, (value) => {
|
||||||
|
useHead({
|
||||||
|
htmlAttrs: {
|
||||||
|
lang: value,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}, { deep: true, immediate: true })
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
theme.global.name.value = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light"
|
theme.global.name.value = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light"
|
||||||
|
|
||||||
|
@ -16,12 +16,13 @@
|
|||||||
<v-img
|
<v-img
|
||||||
:src="`${config.public.solarNetworkApi}/cgi/files/attachments/${post.body?.thumbnail}`"
|
:src="`${config.public.solarNetworkApi}/cgi/files/attachments/${post.body?.thumbnail}`"
|
||||||
:aspect-ratio="16 / 9"
|
:aspect-ratio="16 / 9"
|
||||||
|
alt="Post thumbnail"
|
||||||
class="rounded-md"
|
class="rounded-md"
|
||||||
cover
|
cover
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<article v-if="post.type == 'story'" class="text-base prose mx-auto">
|
<article v-if="post.type == 'story' || props.forceShowContent" class="text-base prose max-w-none">
|
||||||
<m-d-c :value="post.body?.content"></m-d-c>
|
<m-d-c :value="post.body?.content"></m-d-c>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
@ -52,6 +53,6 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
const props = defineProps<{ post: any }>()
|
const props = defineProps<{ post: any, forceShowContent?: boolean }>()
|
||||||
const config = useRuntimeConfig()
|
const config = useRuntimeConfig()
|
||||||
</script>
|
</script>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<v-carousel v-if="!loading" show-arrows="hover" cycle hide-delimiters progress="primary">
|
<v-carousel v-if="!loading" show-arrows="hover" cycle hide-delimiters progress="primary">
|
||||||
<v-carousel-item v-for="(item, i) in items" :key="i">
|
<v-carousel-item v-for="(item, i) in items" :key="i">
|
||||||
<v-sheet color="rgba(0, 0, 0, .4)" class="h-full w-full flex items-center justify-center post-container overflow-scroll">
|
<v-sheet color="rgba(0, 0, 0, .4)" class="h-full w-full flex items-center justify-center post-container overflow-scroll">
|
||||||
<post-item class="mt-5 mb-2" :post="item" />
|
<post-item class="mt-5 mb-2" force-show-content :post="item" />
|
||||||
</v-sheet>
|
</v-sheet>
|
||||||
</v-carousel-item>
|
</v-carousel-item>
|
||||||
</v-carousel>
|
</v-carousel>
|
||||||
|
@ -17,8 +17,8 @@
|
|||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-sheet>
|
</v-sheet>
|
||||||
<v-img v-else-if="item.mimetype.split('/')[0] == 'image'" :src="getAttachmentUrl(item.id)" class="w-full h-full"
|
<v-img v-else-if="item.mimetype.split('/')[0] == 'image'" :src="getAttachmentUrl(item.id)" :alt="item.alt"
|
||||||
cover />
|
class="w-full h-full" cover />
|
||||||
<video v-else-if="item.mimetype.split('/')[0] == 'video'" :src="getAttachmentUrl(item.id)" class="w-full h-full"
|
<video v-else-if="item.mimetype.split('/')[0] == 'video'" :src="getAttachmentUrl(item.id)" class="w-full h-full"
|
||||||
controls />
|
controls />
|
||||||
<v-sheet v-else color="rgba(0, 0, 0, .4)" height="calc(100% + 24px)" class="p-5">
|
<v-sheet v-else color="rgba(0, 0, 0, .4)" height="calc(100% + 24px)" class="p-5">
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<v-app-bar flat color="primary" scroll-behavior="hide">
|
<v-app-bar flat color="primary" scroll-behavior="hide">
|
||||||
<v-container fluid class="mx-auto d-flex align-center justify-center px-8">
|
<v-container fluid class="mx-auto d-flex align-center justify-center px-8">
|
||||||
<nuxt-link to="/" exact>
|
<nuxt-link to="/" exact>
|
||||||
<v-avatar class="me-4 ms-1" color="transparent" size="32" :image="Logo" />
|
<v-img class="me-4 ms-1" width="32" height="32" alt="Logo" :src="Logo" />
|
||||||
</nuxt-link>
|
</nuxt-link>
|
||||||
|
|
||||||
<div class="nav-links overflow-y-auto flex">
|
<div class="nav-links overflow-y-auto flex">
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
</v-col>
|
</v-col>
|
||||||
<v-col cols="12" md="4" class="flex justify-end" order="first" order-md="last">
|
<v-col cols="12" md="4" class="flex justify-end" order="first" order-md="last">
|
||||||
<div class="text-right flex flex-col items-end">
|
<div class="text-right flex flex-col items-end">
|
||||||
<h1 class="text-4xl font-bold">{{ t("indexActivities") }}</h1>
|
<h2 class="text-4xl font-bold">{{ t("indexActivities") }}</h2>
|
||||||
<p class="text-lg mt-3 max-w-2/3">
|
<p class="text-lg mt-3 max-w-2/3">
|
||||||
{{ t("indexActivitiesCaption") }}
|
{{ t("indexActivitiesCaption") }}
|
||||||
</p>
|
</p>
|
||||||
@ -46,6 +46,20 @@ import { getLocale } from "~/utils/locale"
|
|||||||
|
|
||||||
const { t } = useI18n()
|
const { t } = useI18n()
|
||||||
|
|
||||||
|
useHead({
|
||||||
|
title: t("brandName"),
|
||||||
|
})
|
||||||
|
|
||||||
|
useSeoMeta({
|
||||||
|
title: t("brandName"),
|
||||||
|
description: t("indexIntroduce"),
|
||||||
|
ogTitle: t("brandName"),
|
||||||
|
ogDescription: t("indexIntroduce"),
|
||||||
|
ogUrl: useRuntimeConfig().public.siteUrl,
|
||||||
|
ogType: "website",
|
||||||
|
ogSiteName: "Solsynth Capital",
|
||||||
|
})
|
||||||
|
|
||||||
const { data: products } = await useAsyncData("products", () => {
|
const { data: products } = await useAsyncData("products", () => {
|
||||||
return queryContent("/products").where({ _locale: getLocale(), archived: { $ne: true } }).limit(5).find()
|
return queryContent("/products").where({ _locale: getLocale(), archived: { $ne: true } }).limit(5).find()
|
||||||
})
|
})
|
||||||
|
@ -66,12 +66,11 @@ export default defineEventHandler(async (event) => {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
setResponseHeader(event, "Content-Type", "application/rss+xml")
|
|
||||||
|
|
||||||
switch (queries.type) {
|
switch (queries.type) {
|
||||||
case "json":
|
case "json":
|
||||||
return feed.json1()
|
return feed.json1()
|
||||||
case "rss":
|
case "rss":
|
||||||
|
setResponseHeader(event, "Content-Type", "application/rss+xml; charset=utf-8")
|
||||||
return feed.rss2()
|
return feed.rss2()
|
||||||
default:
|
default:
|
||||||
return feed.atom1()
|
return feed.atom1()
|
||||||
|
Loading…
Reference in New Issue
Block a user