Need specific page to have a different logo then the rest of my site, debut theme

please help ! need just one specific page to have entirely different logo then the rest of the site,

site is dezy.us and the specific page is https://dezy.us/pages/deskcamp

Hi @tylerd
You will require some knowledge of liquid to do that
You can achieve it like this

{% if template contains "page" and page.handle == "deskcamp" %}
Your page specific logo here
{% else %}
Your general logo here
{% endif %}

You will probably find logo code in header.liquid, and you can render the logo conidtionally using above code
I hope, it will help you

Thanks!