feat(copy): wrote some basic copy for the statis pages, landing, prices, products
This commit is contained in:
@@ -1,10 +1,14 @@
|
||||
<script setup>
|
||||
import { computed } from 'vue';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import LandingSiteMenu from '@/features/landing/components/LandingSiteMenu.vue';
|
||||
import { usePublicPageMeta } from '@/features/landing/publicPageMeta.js';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
usePublicPageMeta({
|
||||
title: 'Blogs | Socialize',
|
||||
description: 'Practical articles on content review workflows, client approval, revision tracking, and publication handoff.',
|
||||
title: computed(() => t('public.blogs.meta.title')),
|
||||
description: computed(() => t('public.blogs.meta.description')),
|
||||
path: '/blogs',
|
||||
});
|
||||
</script>
|
||||
@@ -15,12 +19,9 @@
|
||||
|
||||
<main class="public-page-content">
|
||||
<section class="public-page-panel">
|
||||
<div class="eyebrow">Blogs</div>
|
||||
<h1>Practical notes on content review workflows.</h1>
|
||||
<p>
|
||||
Articles are coming soon. This area will cover approval operations, client review habits,
|
||||
revision tracking, and publication handoff.
|
||||
</p>
|
||||
<div class="eyebrow">{{ t('public.blogs.eyebrow') }}</div>
|
||||
<h1>{{ t('public.blogs.title') }}</h1>
|
||||
<p>{{ t('public.blogs.description') }}</p>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user