diff --git a/src/components/nostr/nip05.tsx b/src/components/nostr/nip05.tsx index 6aa0d50..43c6f00 100644 --- a/src/components/nostr/nip05.tsx +++ b/src/components/nostr/nip05.tsx @@ -1,7 +1,6 @@ import { useNip05 } from "@/hooks/useNip05"; import { ProfileContent } from "applesauce-core/helpers"; import { isGrimoirePremium, isGrimoireNip05 } from "@/lib/nip05-grimoire"; -import { cn } from "@/lib/utils"; import { Check } from "lucide-react"; export function QueryNip05({ @@ -21,16 +20,9 @@ export function QueryNip05({ const displayNip05 = nip05.replace(/^_@/, ""); return ( - + {displayNip05} - {isPremium && ( - - )} + {isPremium && } ); } diff --git a/src/index.css b/src/index.css index d6c47f4..88795e8 100644 --- a/src/index.css +++ b/src/index.css @@ -105,15 +105,16 @@ .text-grimoire-gradient { background: linear-gradient( - to bottom, - rgb(250 204 21), - /* yellow-400 */ rgb(251 146 60), - /* orange-400 */ rgb(168 85 247), - /* purple-500 */ rgb(34 211 238) /* cyan-400 */ + 135deg, + rgb(251 191 36) 0%, + /* amber-400 */ rgb(251 146 60) 50%, + /* orange-400 */ rgb(249 115 22) 100% /* orange-500 */ ); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; + text-shadow: 0 0 20px rgba(251, 146, 60, 0.5); + filter: drop-shadow(0 0 8px rgba(251, 146, 60, 0.4)); } }