In the theme.liquid file, encase the Pre-order Now include in an if statement that checks if the customer object is present (i.e., customer object is present if a customer is logged in)
E.g.,
{% if customer %}
{% include 'preorder-now' %}
{% endif %}