export function getApiUrl() {
  if(process.env.NEXT_PUBLIC_DEPLOYMENT == 'local') return 'http://localhost:3000';
  if(process.env.NEXT_PUBLIC_DEPLOYMENT == 'dev') return 'https://www.thealt.staging-sip.ethz.ch';
  return 'https://thealternative.ethz.ch';
}