summaryrefslogtreecommitdiff
path: root/src/views/Intro.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/Intro.js')
-rw-r--r--src/views/Intro.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/views/Intro.js b/src/views/Intro.js
index 1868b1c..3a20cde 100644
--- a/src/views/Intro.js
+++ b/src/views/Intro.js
@@ -4,6 +4,7 @@
import React, { useState, useCallback } from "react";
import Vimeo from "@u-wave/react-vimeo";
+import { footprint } from "../utils/shoelace.js";
let playing = false;
@@ -24,6 +25,7 @@ export default function Intro({ onComplete }) {
} catch (error) {
console.error(error);
}
+ footprint("egress");
setDone(true);
setTimeout(() => {
onComplete();
@@ -38,6 +40,7 @@ export default function Intro({ onComplete }) {
console.error(error);
}
setStarted(true);
+ footprint("ingress");
if (player) {
player.play();
}