From 4ef10c9bee49ffca16451024f97e0391044c4d4b Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Tue, 12 Aug 2025 19:35:05 +0530 Subject: [PATCH] chore(web): use scira ai logo --- apps/web/src/components/ai/page-actions.tsx | 72 ++++++++++++++++++--- 1 file changed, 64 insertions(+), 8 deletions(-) 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: ( + + Scira AI Logo + + + + + + + + + ), + }, { 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]);