diff --git a/app/pages/index.vue b/app/pages/index.vue index b0f69ec9..1a0662d4 100644 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -3,6 +3,8 @@ const { data: postings } = await usePublicPostingsRepository(); const { data: careerSiteConfig } = useCareerSiteConfigObjectState(); const { data: seoConfig } = useSeoConfigObjectState(); +const publicConfig = useRuntimeConfig().public; + let title: string = 'Careers'; // TODO: need better defaults (this will hardly be the case); let description: string = 'Career Site'; // TODO: need better defaults (this will hardly be the case); if (seoConfig.value.title) { @@ -46,7 +48,7 @@ useSeoMeta({
Powered By
diff --git a/nuxt.config.ts b/nuxt.config.ts index adfe26a4..c07c3e62 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -66,6 +66,7 @@ export default defineNuxtConfig({ github: 'https://github.com/profilecity/vidur', discord: 'https://discord.gg/9ms5uYF8xF', twitter: 'https://x.com/profilecityhq', + vidur: 'https://profilecity.xyz/vidur', version: 'v0.0.1', }, },