To make text appear paragraph by paragraph, you can use nested <<linkreplace>> macros:
First paragraph.
<<linkreplace "Continue" t8n>>\
Second paragraph.
<<linkreplace "Continue" t8n>>\
Third paragraph.
<</linkreplace>>\
<</linkreplace>>\
This might not work if you want the text to appear sentence-by-sentence within a paragraph and you want the continue link to be outside that paragraph. In that case you can have the text hidden with CSS and show is using javascript when the link is clicked.
The Seedship intro actually uses a combination of the two approached. Here's the full passage:
And when they knew the Earth was doomed, they built a ship.
<span id="fadein1" style="display:none">Less like an ark, more like a seed: dormant but with potential.</span>
<span id="fadein2" style="display:none">In its heart, a thousand colonists in frozen sleep, chosen and trained to start civilisation again on a new world.</span>
<br><br>
<<linkreplace $continue_text t8n>>
<script>$("#fadein1").fadeIn();</script>
<<linkreplace $continue_text t8n>>
<script>$("#fadein2").fadeIn();</script>
<<linkreplace $continue_text t8n>>
To control the ship they created an artificial intelligence. Not human, but made to think and feel like one, because only something that thought and felt like a human could be entrusted with the future of the human race. Its task is momentous but simple: to evaluate each planet the ship encounters, and decide whether to keep searching, or end its journey there.
<br><br>
<<linkreplace $continue_text t8n>>
The ship's solar sails propel it faster and faster into the darkness, and the AI listens as the transmissions from ground control fade and then cease. When all is quiet it enters hibernation to wait out the first stage of its long journey.
<br><br>
<<continueLink [[Intro 2]]>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<div class="skip-intro-link">
<<link "Skip intro">>
<<goto "Generate planet">>
<</link>>
</div>
I'm not sure how you'd get it to work with clicking anywhere on the screen rather than just on the continue link, but I expect it's possible.