From 88843b2e47cc930a495af1813594de63e13c7470 Mon Sep 17 00:00:00 2001 From: levig Date: Sun, 5 Jul 2026 01:39:09 -0300 Subject: [PATCH 1/2] feat(dashboard): platform-specific launch button icons Use a Globe icon for the web launch button (instead of a generic external-link), an Apple icon for iOS, and keep Smartphone for Android so the two mobile buttons are visually distinct and instantly recognizable. --- src/components/pages/dashboard/AppCard.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/pages/dashboard/AppCard.tsx b/src/components/pages/dashboard/AppCard.tsx index fdf6b44..6b7fa83 100644 --- a/src/components/pages/dashboard/AppCard.tsx +++ b/src/components/pages/dashboard/AppCard.tsx @@ -1,4 +1,4 @@ -import { LayoutGrid, ExternalLink, Smartphone, ArrowUpRight, Shield, CircleSlash } from "lucide-react" +import { LayoutGrid, Globe, Apple, Smartphone, ArrowUpRight, Shield, CircleSlash } from "lucide-react" import type { UserAppResponse } from "@/types" import { cn } from "@/utils/cn" import { Badge } from "@/components/ui/badge" @@ -95,7 +95,7 @@ export function AppCard({ app }: { app: UserAppResponse }) { rel="noopener noreferrer" className={cn(buttonVariants({ size: "sm" }), "gap-1.5")} > - + Launch )} @@ -106,7 +106,7 @@ export function AppCard({ app }: { app: UserAppResponse }) { rel="noopener noreferrer" className={cn(buttonVariants({ variant: "outline", size: "sm" }), "gap-1.5")} > - + iOS )} From bba8f31f7b93195827d59d99131e3794bdc483e1 Mon Sep 17 00:00:00 2001 From: Levi Gomes Date: Wed, 15 Jul 2026 17:01:08 -0300 Subject: [PATCH 2/2] chore(ci): empty commit to re-trigger CI checks Co-Authored-By: Claude Opus 4.8 (1M context)