Skip to content
SevenUI
Sign in

Marker

Free, copy-and-go Marker components built on the SevenUI Marker primitive.Read the primitive docs.

Activity Notes

  • Maya Chen joined #design‑reviews
  • Jordan Park renamed the channel from #ui‑crit
  • Maya Chen pinned “Q4 navigation audit”
  • Sam Ortiz left the channel
npx shadcn@latest add @sevenui/component/marker-01pnpm dlx shadcn@latest add @sevenui/component/marker-01yarn dlx shadcn@latest add @sevenui/component/marker-01bunx --bun shadcn@latest add @sevenui/component/marker-01

Date Separators

  • Priya Kickoff notes are in the shared folder.
  • Leo Thanks — I'll draft the API contract tonight.
  • Leo Contract draft is up for review.
  • Priya Approved with two small comments.
  • Leo Addressed both, merging after lunch.
npx shadcn@latest add @sevenui/component/marker-02pnpm dlx shadcn@latest add @sevenui/component/marker-02yarn dlx shadcn@latest add @sevenui/component/marker-02bunx --bun shadcn@latest add @sevenui/component/marker-02

Unread Boundary

  • Nadia Staging deploy is green.
  • Owen I'll start the smoke tests.
3 new since 2:14 PM
  • Owen Checkout flow fails on Safari 17.
  • Nadia Reproduced it — the payment iframe is blocked.
  • Owen Rolling back the CSP change now.
npx shadcn@latest add @sevenui/component/marker-03pnpm dlx shadcn@latest add @sevenui/component/marker-03yarn dlx shadcn@latest add @sevenui/component/marker-03bunx --bun shadcn@latest add @sevenui/component/marker-03

Status Tones

  1. Info: Build 1842 queued on runner eu‑west‑2
  2. Passed: 412 unit tests passed in 38s
  3. Warning: Bundle grew 18 KB — above the 10 KB budget
  4. Failed: E2E: checkout.spec.ts timed out after 30s
npx shadcn@latest add @sevenui/component/marker-04pnpm dlx shadcn@latest add @sevenui/component/marker-04yarn dlx shadcn@latest add @sevenui/component/marker-04bunx --bun shadcn@latest add @sevenui/component/marker-04

Iris Shipping the CSV export redesign on Thursday.

Jump to latest reply from Theo
npx shadcn@latest add @sevenui/component/marker-05pnpm dlx shadcn@latest add @sevenui/component/marker-05yarn dlx shadcn@latest add @sevenui/component/marker-05bunx --bun shadcn@latest add @sevenui/component/marker-05

src/billing/proration.ts

+7 additions-2 deletions
export function prorate(plan: Plan, changedAt: Date) {
Removed: const days = 30;
Added: const days = daysInCycle(plan.cycleStart);
const used = differenceInDays(changedAt, plan.cycleStart);
Added: const remaining = Math.max(days - used, 0);
Removed: return (plan.price / days) * (days - used);
Added: return roundCents((plan.price / days) * remaining);
}
Added: function daysInCycle(start: Date) {
Added: const end = new Date(start.getFullYear(), start.getMonth() + 1, start.getDate());
Added: return differenceInDays(end, start);
Added: }
npx shadcn@latest add @sevenui/component/marker-06pnpm dlx shadcn@latest add @sevenui/component/marker-06yarn dlx shadcn@latest add @sevenui/component/marker-06bunx --bun shadcn@latest add @sevenui/component/marker-06

Notifications

Today
  • Lena commented on Q4 roadmap (unread)

    “Can we move the SSO work before the pricing launch?”

    11:42
  • Review requested on PR 1289 (unread)

    Add rate limiting to the export endpoint

    10:05
Yesterday
  • Invoice INV-2093 was paid (unread)

    Northwind Traders · $2,400.00

    17:30
    Already read below this line
  • Theo mentioned you in Design sync

    “@you the empty state copy is ready for review.”

    14:12
npx shadcn@latest add @sevenui/component/marker-07pnpm dlx shadcn@latest add @sevenui/component/marker-07yarn dlx shadcn@latest add @sevenui/component/marker-07bunx --bun shadcn@latest add @sevenui/component/marker-07

Autosave Status

Workspace profile

Changes save automatically as you type.

All changes saved
npx shadcn@latest add @sevenui/component/marker-08pnpm dlx shadcn@latest add @sevenui/component/marker-08yarn dlx shadcn@latest add @sevenui/component/marker-08bunx --bun shadcn@latest add @sevenui/component/marker-08

Order #SV-30418

In transit

Merino crew sweater · Charcoal · M

Arrives today by 8 PM

  1. Thursday, Sep 25
    1. Out for delivery from Portland, OR (latest update)
    2. Arrived at Portland distribution center
  2. Wednesday, Sep 24
    1. Departed Sacramento, CA
    2. Picked up by carrier
    3. Order packed and labeled
npx shadcn@latest add @sevenui/component/marker-09pnpm dlx shadcn@latest add @sevenui/component/marker-09yarn dlx shadcn@latest add @sevenui/component/marker-09bunx --bun shadcn@latest add @sevenui/component/marker-09

Billing history

Invoices and plan changes for Brightline Studio.

  • 2026
  • Sep 1 invoiceINV-0931 · Team · 8 seats
    Paid$96.00
  • Upgraded from Starter to Team on Aug 14 · $31.20 prorated
  • Aug 1 invoiceINV-0874 · Starter
    Paid$29.00
  • Jul 1 invoiceINV-0812 · Starter
    Refunded$29.00
  • 2025
  • LAUNCH25 applied — 25% off for 3 months
  • Dec 1 invoiceINV-0655 · Starter
    Paid$21.75

npx shadcn@latest add @sevenui/component/marker-10pnpm dlx shadcn@latest add @sevenui/component/marker-10yarn dlx shadcn@latest add @sevenui/component/marker-10bunx --bun shadcn@latest add @sevenui/component/marker-10

Agenda Now Line

Thursday agenda

Sep 25
  1. Now · 11:24
  2. Lunch with AmaraCafé Lumen
  3. Vendor call — ParcellyVideo call
    Overlaps with Lunch with Amara · Suggest a new time
  4. 2h 30m free · good for focus time
  5. 1:1 with DevonRoom 4B
npx shadcn@latest add @sevenui/component/marker-11pnpm dlx shadcn@latest add @sevenui/component/marker-11yarn dlx shadcn@latest add @sevenui/component/marker-11bunx --bun shadcn@latest add @sevenui/component/marker-11
OpenPR 1289

Rate limit the CSV export endpoint

  1. nadia-k pushed 2 commits
    • Add token bucket to export endpointa41c9e2
    • Return Retry-After header on 4297d03b18
  2. src/routes/export.ts · line 42
    RB

    Ravi Bose — Should the bucket be per API key instead of per IP? Shared office networks will hit this fast.

    1 unresolved thread
  3. All checks passed on 7d03b18 · Details

Resolve open threads before merging.

npx shadcn@latest add @sevenui/component/marker-12pnpm dlx shadcn@latest add @sevenui/component/marker-12yarn dlx shadcn@latest add @sevenui/component/marker-12bunx --bun shadcn@latest add @sevenui/component/marker-12
Why did churn go up for annual plans last quarter?
Annual churn rose from 4.1% to 6.8%, and 70% of the increase came from accounts that never invited a second teammate. The Q3 review ties this to the removal of the onboarding checklist in July.
Rate this answer
npx shadcn@latest add @sevenui/component/marker-13pnpm dlx shadcn@latest add @sevenui/component/marker-13yarn dlx shadcn@latest add @sevenui/component/marker-13bunx --bun shadcn@latest add @sevenui/component/marker-13