It would be helpful to have different versions of the site live so we could make more data-driven decisions regarding the changes that we introduce to the the client.
A/B testing could be useful but it might be good to specify a few things if this were to be implemented.
Users will most likely be on content related pages like the curriculum and the news routes. My assumption is that users would stay on the site longer if the content is good, rather than some visual of the site, but I could be wrong.
This blog post appears to be helpful in actual implementation of this using https://www.npmjs.com/package/@marvelapp/react-ab-test.
Good news is that it appears that @marvelapp/react-ab-test
is maintained as of last December, which is good because it is a fork of what appears to be an unmaintained react-ab-test
from 2017.
It appears that this is all that might be needed to implement an experiment.
<Experiment name="My Example">
<Variant name="A">
<div>Version A</div>
</Variant>
<Variant name="B">
<div>Version B</div>
</Variant>
</Experiment>
We are mainly interested in improving time on site, sign-ups, donations, etc.
That would require split testing the followings:
I will take on the testing for the time being.
Most helpful comment
We are mainly interested in improving time on site, sign-ups, donations, etc.
That would require split testing the followings:
I will take on the testing for the time being.