// Customizable command palette for advanced users
// Opens with cmd+k or ctrl+k by default
// https://github.com/excid3/ninja-keys
import Typed from 'typed.js';
import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static targets = ["typing"]
connect() {
const typed = new Typed(this.typingTarget, {
strings: [
'Sentry',
'Dagster',
'Metabase',
'Grafana',
'Airflow',
],
typeSpeed: 50,
loop: true,
});
}
}