From 9589c230da19359dcbc4d4e3125de81a09fb6db8 Mon Sep 17 00:00:00 2001 From: Nahiyan Khan Date: Sat, 25 Apr 2026 01:29:52 -0400 Subject: [PATCH] docs: fix broken lucide import after expression rename MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The fingerprint→expression rename in df1dca6 over-eagerly renamed the Fingerprint lucide-react icon to Expression, which doesn't exist. Swap in Orbit instead — visually says "an organizing principle other things revolve around," which is closer to what an expression actually is. Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/docs/src/app/docs/page.tsx | 4 ++-- apps/docs/src/app/tools/page.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/docs/src/app/docs/page.tsx b/apps/docs/src/app/docs/page.tsx index fcbfa37..7633389 100644 --- a/apps/docs/src/app/docs/page.tsx +++ b/apps/docs/src/app/docs/page.tsx @@ -1,7 +1,7 @@ "use client"; import { useStaggerReveal } from "ghost-ui"; -import { BookOpen, Expression, Rocket } from "lucide-react"; +import { BookOpen, Orbit, Rocket } from "lucide-react"; import type { ReactNode } from "react"; import { Link } from "react-router"; import { AnimatedPageHeader } from "@/components/docs/animated-page-header"; @@ -18,7 +18,7 @@ const sections: { href: "/tools/drift/workflow", description: "The five moves: profile, compare, review, evolve, and zoom out to the org expression — with examples for each.", - icon: , + icon: , }, { name: "Getting Started", diff --git a/apps/docs/src/app/tools/page.tsx b/apps/docs/src/app/tools/page.tsx index bb9cd60..52ef9cd 100644 --- a/apps/docs/src/app/tools/page.tsx +++ b/apps/docs/src/app/tools/page.tsx @@ -1,7 +1,7 @@ "use client"; import { useStaggerReveal } from "ghost-ui"; -import { Expression } from "lucide-react"; +import { Orbit } from "lucide-react"; import { Link } from "react-router"; import { AnimatedPageHeader } from "@/components/docs/animated-page-header"; import { SectionWrapper } from "@/components/docs/wrappers"; @@ -12,7 +12,7 @@ const tools = [ href: "/tools/drift", description: "Express design languages, track their evolution, and surface divergence before it compounds.", - icon: , + icon: , }, ];