-
- Bridged is free to use
-
- Free for dreamers. Bridged is Free for now, we don't take any forms
- of payment for now. Feel free to create your awesome products with
- it.
-
-
-
- >
- );
-}
\ No newline at end of file
+ return PricingSection.map(item => item.content());
+}
diff --git a/web/sections/pricing/faq/index.tsx b/web/sections/pricing/faq/index.tsx
new file mode 100644
index 000000000..3e9b6e9f5
--- /dev/null
+++ b/web/sections/pricing/faq/index.tsx
@@ -0,0 +1,55 @@
+import React from "react";
+import styled from "@emotion/styled";
+import { Flex, Heading } from "rebass";
+import SectionLayout from "layout/section";
+import Question from "components/question";
+import BlankArea from "components/blank-area";
+
+const questionList = [
+ {
+ title: "How do Bridged make money?",
+ },
+ {
+ title: "What are the limitations with free plan?",
+ },
+ {
+ title: "I cannot see images anymore. What happened?",
+ desc:
+ "Your image is uploaded and hosted on bridged cloud for 24 hours for development mode. If you enable publishing option for the screen / component you selected, all the resources will be long-lived. long-lived resource hosting is only available for paid plan. for free plan, we only support 24 hours temp hosting.",
+ },
+ {
+ title: "How does the standard extra cloud usage fee calculated?",
+ },
+ {
+ title: "Does bridged have explicit enterprise support plan?",
+ },
+];
+
+const Faq: React.FC = () => {
+ return (
+