feat: add video tour functionality with helpers, configuration, and homepage walkthrough

This commit is contained in:
2026-02-26 02:42:16 +00:00
parent 20eaa50935
commit e8fd38e98a
8 changed files with 295 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
/**
* 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