From 0628a435abb22c9720c5e624d18479cb52038cc5 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <209825114+claude[bot]@users.noreply.github.com> Date: Wed, 2 Jul 2025 19:37:53 +0000 Subject: [PATCH] Add new FAQ section about supported file types --- frontend/src/routes/pricing.tsx | 45 +++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/frontend/src/routes/pricing.tsx b/frontend/src/routes/pricing.tsx index 25b8f67da..79a762b15 100644 --- a/frontend/src/routes/pricing.tsx +++ b/frontend/src/routes/pricing.tsx @@ -14,6 +14,21 @@ import { Switch } from "@/components/ui/switch"; import { type } from "@tauri-apps/plugin-os"; import { PRICING_PLANS } from "@/config/pricingConfig"; +// File type constants for upload features +const SUPPORTED_IMAGE_FORMATS = [".jpg", ".png", ".webp"]; +const SUPPORTED_DOCUMENT_FORMATS = [ + ".pdf", + ".doc", + ".docx", + ".txt", + ".rtf", + ".xlsx", + ".xls", + ".pptx", + ".ppt", + ".md" +]; + type PricingSearchParams = { selected_plan?: string; success?: boolean; @@ -116,6 +131,36 @@ function PricingFAQ() {

+
+ + Which file types are supported for document and image upload? + +
+

We support a range of file types with potential to add more in the future.

+
+ Images: +
    + {SUPPORTED_IMAGE_FORMATS.map((format) => ( +
  • + {format} +
  • + ))} +
+
+
+ Documents: +
    + {SUPPORTED_DOCUMENT_FORMATS.map((format) => ( +
  • + {format} +
  • + ))} +
+
+

There is a 1 file limit per chat prompt with a 5MB file size limit per file.

+
+
+
How did you build this?