import './style.css'

const DESTINATION = 'https://boy.bio/golnazghiasi'

const app = document.querySelector<HTMLDivElement>('#app')!

app.innerHTML = `
  <main class="stage">
    <p class="brand">Golnaz Ghiasi</p>
    <h1>Heading to boy.bio</h1>
    <p class="lede">You are being redirected to the profile.</p>
    <a class="cta" href="${DESTINATION}">Continue</a>
  </main>
`

window.location.replace(DESTINATION)
