Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/docs/src/app/docs/page.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand All @@ -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: <Expression className="size-8" strokeWidth={1.5} />,
icon: <Orbit className="size-8" strokeWidth={1.5} />,
},
{
name: "Getting Started",
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/src/app/tools/page.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand All @@ -12,7 +12,7 @@ const tools = [
href: "/tools/drift",
description:
"Express design languages, track their evolution, and surface divergence before it compounds.",
icon: <Expression className="size-8" strokeWidth={1.5} />,
icon: <Orbit className="size-8" strokeWidth={1.5} />,
},
];

Expand Down
Loading