feat(copy): wrote some basic copy for the statis pages, landing, prices, products
Some checks failed
Backend CI/CD / build_and_deploy (push) Has been cancelled
Frontend CI/CD / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-05-04 22:08:42 -04:00
parent b7379cf823
commit feef8cbafd
17 changed files with 1583 additions and 147 deletions

View File

@@ -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>