diff --git a/apps/web/src/components/ai/page-actions.tsx b/apps/web/src/components/ai/page-actions.tsx
index c08d1af..7ef08fd 100644
--- a/apps/web/src/components/ai/page-actions.tsx
+++ b/apps/web/src/components/ai/page-actions.tsx
@@ -13,7 +13,6 @@ import {
Copy,
ExternalLinkIcon,
MessageCircleIcon,
- SearchIcon,
} from "lucide-react";
import { useMemo, useState } from "react";
import { cn } from "../../../lib/cn";
@@ -106,6 +105,70 @@ export function ViewOptions({
),
},
+ {
+ title: "Open in Scira AI",
+ href: `https://scira.ai/?${new URLSearchParams({
+ q,
+ })}`,
+ icon: (
+
+ ),
+ },
{
title: "Open in ChatGPT",
href: `https://chatgpt.com/?${new URLSearchParams({
@@ -148,13 +211,6 @@ export function ViewOptions({
})}`,
icon: ,
},
- {
- title: "Open in Scira AI",
- href: `https://scira.ai/?${new URLSearchParams({
- q,
- })}`,
- icon: ,
- },
];
}, [githubUrl, markdownUrl]);