diff --git a/data/content.ts b/data/content.ts index 6111116..7f08307 100644 --- a/data/content.ts +++ b/data/content.ts @@ -124,24 +124,67 @@ An \`agent\` is a real-person (and most often a representative of some business) A front-desk employee at a hotel checking in a guest is an easy to reach example. The ticketing/admission agents at an event might be another. These agent to guest interactions are what drive an organization on the ground. -These interactions might occur at high volumes and might be sustained throughout normal business operation. In such cases, -the amount of time spent completing tasks and exchanging information might have a very high impact on a business' operations. + +
A standard conversation flow + ++ + +These interactions might repeat throughout normal business operation, and more than one may happen at once. Agents can +(in general) only handle one interaction at a time. + + ++ +
A line of workflows waiting to happen + ++ + +Scale this up. Hundreds of guests, or thousands of guests arriving at a high rate. A once a year event is happening or somesuch. +Most organizations at such scale aren't going to have a single agent handling any task that might be a bottleneck to normal operation. + + ++ +
An surge of workflows happening all at once + ++ +With or without the additional help, at scale, little variances in the amount of time spent in every component of an interaction while +completing tasks and exchanging information might have a very high cumulative impact on a business' ability to scale operation to bursts in demand. FAM supports breaking these interactions down into streamlined, consistent, efficient, repeatable, and flexible workflows. -+ +
Not every interaction will be the same. Some guests might have additional service needs. - --A step can contain any type of work, and can be used in multiple workflows. An identification step for a check-in process using the default template might look like such: +A step can contain any type of work, and can be used in multiple workflows. + + +An identification step for a check-in process using the default template might look like such: ++ +
+ ++
+ +++ +
+ +-There is a minimum amount of time that it takes an agent to complete a task in any software, and there is a reasonable maximum amount of time that might be spent on -unusual circumstances or perhaps lost to the 'growing pains' of inexperienced staff or imperfect systems. +There is a minimum amount of time that it takes an agent to complete a task in a UI and a reasonable maximum amount of time that might + be spent on the same task in the same UI. This variance could be blamed on various factors, but it's mostly just input errors or mistakes in procedure. -FAM tries to shorten the duration of agent to guest interactions without reducing the quality of the interaction through purpose-built UX-first guided workflows. Task identification from business analysis are made into functional workflows that support reducing the time taken to complete tasks while also addressing the variability in +FAM tries to reduce the amount of time lost to mistakes and the overall interaction duration without reducing the quality of the interaction +through purpose-built UX-first guided workflows. + +Task identification from business analysis are made into functional workflows that support reducing the time taken to complete tasks while also addressing the variability in how much time that it takes to complete these tasks. @@ -152,7 +195,11 @@ how much time that it takes to complete these tasks.+ +
The general look and feel of a step in a workflow. diff --git a/public/img/projects/fam/flow-lineup-at-scale.png b/public/img/projects/fam/flow-lineup-at-scale.png new file mode 100644 index 0000000..2e56de9 Binary files /dev/null and b/public/img/projects/fam/flow-lineup-at-scale.png differ diff --git a/public/img/projects/fam/flow-lineup.png b/public/img/projects/fam/flow-lineup.png new file mode 100644 index 0000000..71644de Binary files /dev/null and b/public/img/projects/fam/flow-lineup.png differ diff --git a/public/img/projects/fam/standard-conversation-flow.png b/public/img/projects/fam/standard-conversation-flow.png new file mode 100644 index 0000000..6518a63 Binary files /dev/null and b/public/img/projects/fam/standard-conversation-flow.png differ diff --git a/public/img/projects/fam/workflow-abandon.png b/public/img/projects/fam/workflow-abandon.png new file mode 100644 index 0000000..9f337f5 Binary files /dev/null and b/public/img/projects/fam/workflow-abandon.png differ diff --git a/public/img/projects/fam/workflow-jump.png b/public/img/projects/fam/workflow-jump.png new file mode 100644 index 0000000..4481ba4 Binary files /dev/null and b/public/img/projects/fam/workflow-jump.png differ diff --git a/public/img/projects/fam/workflow-sequence-cond.png b/public/img/projects/fam/workflow-sequence-cond.png new file mode 100644 index 0000000..b82e281 Binary files /dev/null and b/public/img/projects/fam/workflow-sequence-cond.png differ diff --git a/public/img/projects/fam/workflow-sequence-trav.png b/public/img/projects/fam/workflow-sequence-trav.png new file mode 100644 index 0000000..6b46b40 Binary files /dev/null and b/public/img/projects/fam/workflow-sequence-trav.png differ diff --git a/public/img/projects/fam/workflow-steps.png b/public/img/projects/fam/workflow-steps.png new file mode 100644 index 0000000..2671768 Binary files /dev/null and b/public/img/projects/fam/workflow-steps.png differ diff --git a/styles/markdown-container.css b/styles/markdown-container.css index d4127a2..30f106e 100644 --- a/styles/markdown-container.css +++ b/styles/markdown-container.css @@ -38,7 +38,23 @@ text-align: center; font-family: var(--sans); font-size: 12; + line-height: 2; color: var(--muted); + background-color: var(--bg-raised); + padding: 0.5em; + border-radius: var(--radius-md); + box-shadow: var(--shadow-md); + display: flex; + flex-direction: column-reverse; + margin-bottom: 2em; + + } + + blockquote img { + border-radius: var(--radius-sm); + } + blockquote video { + align-self: center; } ul {