---
const visible = true;
const name = "Legend Sabbir"
---
{visible && <p>Show me!</p>}

{visible ? <p>Show me!</p> : <p>Else show me!</p>}

<h1>{name}</h1>