Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 5 additions & 10 deletions client/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ const defaultProps = {
type Props = OwnProps & typeof defaultProps;

const basePubPubFooterLinks = [
{ id: '1', title: 'Create your community', href: '/community/create' },
{ id: '2', title: 'Login', href: '/login' },
{ id: '3', title: 'Signup', href: '/signup' },
{ id: '4', title: 'Legal', href: '/legal' },
Expand Down Expand Up @@ -143,21 +142,17 @@ const Footer = (props: Props) => {
</ul>
</div>
<ul className="separated">
<li>
<a href="https://pubpub.org/about">About</a>
</li>
<li>
<a href="https://pubpub.org/explore">Explore</a>
</li>
<li>
<a href="https://pubpub.org/pricing">Pricing</a>
</li>
<li>
<a href="https://help.pubpub.org">Help</a>
</li>
<li>
<a href="https://github.com/pubpub/pubpub/discussions">Forum</a>
</li>
<li>
<a href="https://www.knowledgefutures.org/pubpub/">
Learn about the new PubPub Platform
</a>
</li>
</ul>

<form onSubmit={handleEmailSubmit}>
Expand Down
7 changes: 4 additions & 3 deletions client/components/GlobalControls/GlobalControls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,10 @@ const GlobalControls = (props: Props) => {
if (isBasePubPub) {
return (
<>
<GlobalControlsButton href="/explore" mobileOrDesktop={{ text: 'Explore' }} />
<GlobalControlsButton href="/pricing" mobileOrDesktop={{ text: 'Pricing' }} />
<GlobalControlsButton href="/about" mobileOrDesktop={{ text: 'About' }} />
<GlobalControlsButton
href="https://www.knowledgefutures.org/pubpub/"
mobileOrDesktop={{ text: 'PubPub Platform (new!)' }}
/>
{renderSearch()}
</>
);
Expand Down
4 changes: 0 additions & 4 deletions client/containers/About/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ const About = function () {
from drafting documents, conducting peer review, and hosting entire journal and
book websites to collecting and displaying reader feedback and analytics.
</p>
<p>
You can get started now by{' '}
<a href="/community/create">creating your community</a>.
</p>
<h2>Features, Benefits, and Tradeoffs</h2>
<p>
PubPub is an open-source, hosted, free-to-use content management system designed
Expand Down
26 changes: 6 additions & 20 deletions client/containers/CommunityCreate/CommunityCreate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,16 @@ const CommunityCreate = () => {
<div>
<h1>Create Community</h1>
<p>
PubPub and all its features are free to use.<sup>*</sup> If you value
PubPub, we ask you to consider supporting our work by becoming a member
of the Knowledge Futures Group.{' '}
PubPub is evolving, and we are currently only allowing new community
creation for existing users with an explicit short-term need. Learn more
by reading our announcement. If you are an existing user who needs to
create a community, please{' '}
<a
href="https://knowledgefutures.org/membership"
href="mailto:partnerships@knowledgefutures.org?mailto=PubPub%20Legacy%20Community"
target="_blank"
rel="noreferrer"
>
Learn more
get in touch
</a>
.
</p>
Expand Down Expand Up @@ -178,21 +179,6 @@ const CommunityCreate = () => {
/>
</InputField>
</form>
<p>
<sup>*</sup> We limit DOI registrations to 10 per community per year, if
published via PubPub's Crossref membership. Once the limit is reached,
we ask that you become a{' '}
<a
href="https://knowledgefutures.org/membership"
target="_blank"
rel="noreferrer"
>
KFG member
</a>
, at any level, and allow us to pass on the Crossref fee of $1 per DOI
registered. For groups with their own Crossref membership, there is no
additional fee for creating or depositing DOIs.
</p>
</div>
)}
</GridWrapper>
Expand Down
11 changes: 4 additions & 7 deletions client/containers/Explore/Explore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,10 @@ const Explore = (props: Props) => {
<div className="col-12">
<h1>Explore communities</h1>
<div className="details">
PubPub hosts over 3,000 communities, with more added every day! Anyone
can <a href="/community/create">create</a> a free PubPub community at
any time; all you need is an account and some very basic community
details. Below are 40 PubPub communities that we think form a good
snapshot of what you can create with PubPub's spaces and features. We
hope they provide inspiration for your own spaces, designs, and
workflows.
PubPub hosts over 3,000 communities, with more added every day! Below
are 40 PubPub communities that we think form a good snapshot of what you
can create with PubPub's spaces and features. We hope they provide
inspiration for your own spaces, designs, and workflows.
</div>
</div>

Expand Down
Loading