diff --git a/web/components/create-fold-button.tsx b/web/components/create-fold-button.tsx index 794ed8ab..d6085f51 100644 --- a/web/components/create-fold-button.tsx +++ b/web/components/create-fold-button.tsx @@ -49,7 +49,7 @@ export function CreateFoldButton() { - + <Title className="!mt-0" text="Create a community" /> <Col className="text-gray-500 gap-1"> <div> - Markets are included in a fold if they match one or more tags. + Markets are included in a community if they match one or more tags. </div> </Col> @@ -74,11 +74,11 @@ export function CreateFoldButton() { <div> <div className="form-control w-full"> <label className="label"> - <span className="mb-1">Fold name</span> + <span className="mb-1">Community name</span> </label> <input - placeholder="Your fold name" + placeholder="Name" className="input input-bordered resize-none" disabled={isSubmitting} value={name} diff --git a/web/components/edit-fold-button.tsx b/web/components/edit-fold-button.tsx index 3019f3a1..bba67320 100644 --- a/web/components/edit-fold-button.tsx +++ b/web/components/edit-fold-button.tsx @@ -59,7 +59,7 @@ export function EditFoldButton(props: { fold: Fold; className?: string }) { <div className="modal-box"> <div className="form-control w-full"> <label className="label"> - <span className="mb-1">Fold name</span> + <span className="mb-1">Community name</span> </label> <input diff --git a/web/components/nav-bar.tsx b/web/components/nav-bar.tsx index 10319073..d38453b26 100644 --- a/web/components/nav-bar.tsx +++ b/web/components/nav-bar.tsx @@ -134,7 +134,7 @@ function NavOptions(props: { themeClasses )} > - Folds + Communities </a> </Link> diff --git a/web/pages/folds.tsx b/web/pages/folds.tsx index bdb90b0e..cc3d1dea 100644 --- a/web/pages/folds.tsx +++ b/web/pages/folds.tsx @@ -66,12 +66,12 @@ export default function Folds(props: { <Col className="max-w-lg w-full"> <Col className="px-4 sm:px-0"> <Row className="justify-between items-center"> - <Title text="Explore folds" /> + <Title text="Explore communities" /> {user && <CreateFoldButton />} </Row> <div className="text-gray-500 mb-6"> - Folds are communities on Manifold centered around a collection of + Communities on Manifold are centered around a collection of markets. </div> </Col>