diff --git a/apps/web/app/(marketing)/(legal)/cookie-policy/page.tsx b/apps/web/app/(marketing)/(legal)/cookie-policy/page.tsx
index 6638a51f1..d3c5eeeab 100644
--- a/apps/web/app/(marketing)/(legal)/cookie-policy/page.tsx
+++ b/apps/web/app/(marketing)/(legal)/cookie-policy/page.tsx
@@ -15,11 +15,13 @@ async function CookiePolicyPage() {
return (
-
-
+
+
+
+
Your terms of service content here
);
diff --git a/apps/web/app/(marketing)/(legal)/privacy-policy/page.tsx b/apps/web/app/(marketing)/(legal)/privacy-policy/page.tsx
index 5bdab2ac4..b8ff856cf 100644
--- a/apps/web/app/(marketing)/(legal)/privacy-policy/page.tsx
+++ b/apps/web/app/(marketing)/(legal)/privacy-policy/page.tsx
@@ -14,12 +14,14 @@ async function PrivacyPolicyPage() {
const { t } = await createI18nServerInstance();
return (
-
-
-
+
+
+
+
+
Your terms of service content here
);
diff --git a/apps/web/app/(marketing)/(legal)/terms-of-service/page.tsx b/apps/web/app/(marketing)/(legal)/terms-of-service/page.tsx
index fa5d4c4d0..623d3d1ca 100644
--- a/apps/web/app/(marketing)/(legal)/terms-of-service/page.tsx
+++ b/apps/web/app/(marketing)/(legal)/terms-of-service/page.tsx
@@ -1,3 +1,5 @@
+import { PageBody } from '@kit/ui/page';
+
import { SitePageHeader } from '~/(marketing)/_components/site-page-header';
import { createI18nServerInstance } from '~/lib/i18n/i18n.server';
import { withI18n } from '~/lib/i18n/with-i18n';
@@ -14,12 +16,14 @@ async function TermsOfServicePage() {
const { t } = await createI18nServerInstance();
return (
-
-
-
+
+
+
+
+
Your terms of service content here
);
diff --git a/apps/web/app/(marketing)/contact/page.tsx b/apps/web/app/(marketing)/contact/page.tsx
index 19b590490..8597d7737 100644
--- a/apps/web/app/(marketing)/contact/page.tsx
+++ b/apps/web/app/(marketing)/contact/page.tsx
@@ -18,7 +18,7 @@ async function ContactPage() {
const { t } = await createI18nServerInstance();
return (
-
+
{
const { t } = await createI18nServerInstance();
diff --git a/apps/web/app/(marketing)/faq/page.tsx b/apps/web/app/(marketing)/faq/page.tsx
index fbf0cc5b5..658bae1fb 100644
--- a/apps/web/app/(marketing)/faq/page.tsx
+++ b/apps/web/app/(marketing)/faq/page.tsx
@@ -20,11 +20,12 @@ export const generateMetadata = async () => {
async function FAQPage() {
const { t } = await createI18nServerInstance();
- // replace this content
- // with translations
+ // replace this content with translations
const faqItems = [
{
+ // or: t('marketing:faq.question1')
question: `Do you offer a free trial?`,
+ // or: t('marketing:faq.answer1')
answer: `Yes, we offer a 14-day free trial. You can cancel at any time during the trial period and you won't be charged.`,
},
{
@@ -124,7 +125,7 @@ function FaqItem({
'hover:underline-none cursor-pointer font-sans font-medium'
}
>
- {item.question}
+
@@ -134,10 +135,9 @@ function FaqItem({
-
+
+
+
);
}