Home Reference Source

application/lang/en/publish.js

export const language = {
    stepOne: () => {
        return (
            <p>Please review the title and URLs before publishing. It's generally a bad idea to change the URL after publishing (but CEO will keep track of changes).</p>
        )
    },
    stepTwo: () => {
        return (
            <p>The article abstract is used as the preview text for the article on the homepage and section fronts as well as when it is shared to social media. It should be brief and not more than one paragraph.</p>
        )
    },
    stepThree: () => {
        return (
            <p>Publish now, or schedule a different publish time.</p>
        )
    }
};