diff --git a/src/app/favicon.ico b/src/app/favicon.ico index baea61a..f6d7b86 100644 Binary files a/src/app/favicon.ico and b/src/app/favicon.ico differ diff --git a/src/app/globals.css b/src/app/globals.css index 7701677..7d20302 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -154,3 +154,15 @@ body { opacity: 1; transform: translateX(0); /* Slide the button to the left */ } + +/* Remove spinner arrows in number inputs for WebKit (Chrome, Safari) */ +input[type='number']::-webkit-outer-spin-button, +input[type='number']::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +/* Remove spinner arrows for Firefox */ +input[type='number'] { + -moz-appearance: textfield; +} diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index f0d2350..46c717c 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,5 +1,6 @@ "use client"; +import { URL_TELEGRAM, URL_TWITTER } from "@/shared/constants"; import Image from "next/image"; import Link from "next/link"; @@ -22,7 +23,7 @@ export default function Footer() { {/* Social Buttons */}
onSelect(game)} + ${selectedGame?.id === game.id + ? "scale-110 border-gray-400 bg-gray-800" + : game.isAvailable + ? "border-gray-600 bg-[rgb(10,10,10)] hover:scale-105 hover:border-gray-400" + : "border-gray-800 bg-[rgb(5,5,5)] opacity-50 cursor-not-allowed" + }`} + onClick={() => game.isAvailable && onSelect(game)} >

{game.name}

+ {!game.isAvailable && ( +

Coming Soon

+ )}
))} diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 040ef84..b032c03 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -5,6 +5,7 @@ import Image from "next/image"; import { FaTelegram, FaXTwitter } from "react-icons/fa6"; import { useState } from "react"; import PrivyButton from "./PrivyButton"; +import { URL_TELEGRAM, URL_TWITTER, URL_WHITEPAPER } from "@/shared/constants"; export default function Header() { const [isDrawerOpen, setIsDrawerOpen] = useState(false); @@ -25,7 +26,7 @@ export default function Header() { {/* Navigation Links (hidden on mobile, visible on md+) */}