Refactor code and improve translations setup

The commit refactors the import paths, streamlining the file structure. Removed unused imports and shifted a few components in the modules. Also, the translation setup in the FAQ page was improved for better readability and maintainability. Placeholder content has been added to policy pages as well.
This commit is contained in:
giancarlo
2024-04-28 00:22:44 +07:00
parent 2b2977f0c8
commit 70a7778d31
7 changed files with 38 additions and 32 deletions

View File

@@ -14,12 +14,14 @@ async function PrivacyPolicyPage() {
const { t } = await createI18nServerInstance();
return (
<div className={'mt-8'}>
<div className={'container mx-auto'}>
<SitePageHeader
title={t('marketing:privacyPolicy')}
subtitle={t('marketing:privacyPolicyDescription')}
/>
<div>
<SitePageHeader
title={t('marketing:privacyPolicy')}
subtitle={t('marketing:privacyPolicyDescription')}
/>
<div className={'container mx-auto py-8'}>
<div>Your terms of service content here</div>
</div>
</div>
);