diff --git a/apps/web/app/api/[...route]/route.ts b/apps/web/app/api/[...route]/route.ts index 401725a..7fd6f7e 100644 --- a/apps/web/app/api/[...route]/route.ts +++ b/apps/web/app/api/[...route]/route.ts @@ -19,6 +19,7 @@ import { PRICING_PLANS, PricingPlanInterval, PricingPlanTier, + TRIAL_PERIOD_DAYS, } from "@/lib/pricing.constants"; const UnauthorizedError = (c: Context) => { @@ -164,7 +165,7 @@ const api = new Hono() success_url: `${BASE_URL}/account?success=true`, cancel_url: `${BASE_URL}/account?canceled=true`, subscription_data: { - trial_period_days: 14, + trial_period_days: TRIAL_PERIOD_DAYS, metadata: { plan_id: selectedPlan.id, }, diff --git a/apps/web/app/contact/page.tsx b/apps/web/app/contact/page.tsx new file mode 100644 index 0000000..c619a86 --- /dev/null +++ b/apps/web/app/contact/page.tsx @@ -0,0 +1,28 @@ +import Footer from "@/components/Footer"; +import Navigation from "@/components/marketing/Navigation"; + +export default function ContactPage() { + return ( +
+ If you have any questions, feedback, or issues, please feel free to + contact us by email. +
++ Email: support@zenblog.com +
++ Twitter: @zenbloghq +
++ Please make sure to include all relevant information so we can get + back to you. +
+