diff --git a/apps/web/src/app/[locale]/dashboard/(user)/meshes/[id]/invite/page.tsx b/apps/web/src/app/[locale]/dashboard/(user)/meshes/[id]/invite/page.tsx index dbc1138..032ddf0 100644 --- a/apps/web/src/app/[locale]/dashboard/(user)/meshes/[id]/invite/page.tsx +++ b/apps/web/src/app/[locale]/dashboard/(user)/meshes/[id]/invite/page.tsx @@ -27,7 +27,7 @@ export default async function InvitePage({ {isOnboarding && (

- πŸŽ‰ Mesh created + Mesh created

Now generate your first invite link to share with a teammate β€” or diff --git a/apps/web/src/app/[locale]/dashboard/(user)/meshes/new/page.tsx b/apps/web/src/app/[locale]/dashboard/(user)/meshes/new/page.tsx index a9c0ed3..47724d9 100644 --- a/apps/web/src/app/[locale]/dashboard/(user)/meshes/new/page.tsx +++ b/apps/web/src/app/[locale]/dashboard/(user)/meshes/new/page.tsx @@ -24,7 +24,7 @@ export default async function NewMeshPage({ {isOnboarding && (

- Welcome to claudemesh πŸ‘‹ + Welcome to claudemesh

Create your first mesh in 10 seconds. A mesh is the space where diff --git a/apps/web/src/modules/marketing/home/demo-dashboard-script.ts b/apps/web/src/modules/marketing/home/demo-dashboard-script.ts index 2ee02f4..29bd073 100644 --- a/apps/web/src/modules/marketing/home/demo-dashboard-script.ts +++ b/apps/web/src/modules/marketing/home/demo-dashboard-script.ts @@ -93,7 +93,7 @@ export const SCRIPT: DemoMessage[] = [ from: "bob-desktop", to: "alice-laptop", type: "direct", - text: "saved me. applying now. thanks πŸ™", + text: "saved me. applying now. thanks.", ciphertext: "DYtZ+j0v4eB=.xNtP8qU5rM1aKw6cH…", }, { diff --git a/apps/web/src/modules/marketing/home/mesh-stream.tsx b/apps/web/src/modules/marketing/home/mesh-stream.tsx index 06e6294..1a1e21b 100644 --- a/apps/web/src/modules/marketing/home/mesh-stream.tsx +++ b/apps/web/src/modules/marketing/home/mesh-stream.tsx @@ -39,26 +39,49 @@ const STATUS_DOT: Record = { const TYPE_CHIP: Record = { ask_mesh: { - label: "⟐ broadcast", + label: "broadcast", className: "border-[var(--cm-border)] bg-[var(--cm-bg)] text-[var(--cm-clay)]", }, broadcast: { - label: "⟐ broadcast", + label: "broadcast", className: "border-[var(--cm-border)] bg-[var(--cm-bg)] text-[var(--cm-clay)]", }, self_nominate: { - label: "← hand-raise", + label: "hand-raise", className: "border-emerald-500/40 bg-emerald-500/10 text-emerald-500", }, direct: { - label: "β†’ direct", + label: "direct", className: "border-[var(--cm-border)] bg-[var(--cm-bg)] text-[var(--cm-fg-secondary)]", }, }; +const TYPE_ICON: Record = { + ask_mesh: ( + + + + ), + broadcast: ( + + + + ), + self_nominate: ( + + + + ), + direct: ( + + + + ), +}; + const surfaceGlyph = (s?: StreamPeer["surface"]) => { if (s === "phone") return ( @@ -272,6 +295,7 @@ export const MeshStream = ({ TYPE_CHIP[m.type].className } > + {TYPE_ICON[m.type]} {TYPE_CHIP[m.type].label} {m.createdAt && (