17 lines
557 B
TypeScript
17 lines
557 B
TypeScript
/**
|
|
* Constants for video tour configuration.
|
|
*
|
|
* Adapt these values to your project. The tour user is designed
|
|
* to persist across runs so that on repeat runs the tour simply
|
|
* logs in instead of re-registering.
|
|
*/
|
|
|
|
// ── Tour User (adjust for your project) ──────────────────────────────
|
|
export const TOUR_USER = {
|
|
email: "tour-demo@test.example.com",
|
|
password: "TourDemo2025!",
|
|
firstName: "Max",
|
|
lastName: "Mustermann",
|
|
organization: "Mustermann GmbH",
|
|
} as const
|