Changing to a .com domain

Hey folks, if you were ever interested in incredibly mundane company changes… We’ve got a biggy for you.

We’re moving to a .com domain and we’ve somehow managed to write a whole :earth_americas: article about it

We’re going to probably bore you in the future with our findings with SEO, from a website that’s been around for a few years, with more backlinks than you can shake a stick at.

Hidden little tip

Thanks for reading, for your time, we’d also like to bundle a fun little tip with Vercel Analytics. Make sure you include an event on your call to actions on your blogs so you can see who’s actually reading and if they convert. Here’s a little peek behind who clicked ours on our blog post about how we use v0

And the bit you’ve all been waiting for… The code:

<a
  href="https://cal.com/roboto/30min"
  onClick={() => {
    trackEvents(`${uid}-form-submit-cta`, {
      details: pathname,
      event: 'Booked a meeting after visiting' + uid,
    });
  }}
>
  <Button className="w-full gap-4 px-8" variant="secondary">
    <Calendar />
    Book a meeting
  </Button>
</a>

This is a little bit cleaned up from what we used, but you get the idea

6 Likes

This is super interesting! Curious about the longer term impact, if any.

1 Like