Compare commits

...

2 Commits

Author SHA1 Message Date
admin d73bdd327b chore(favicon): 使用预发布环境的图标
Docker Image / Quality and Bundle Budgets (push) Successful in 3s
Docker Image / Build and Push Docker Image (push) Successful in 1m51s
2026-07-20 15:00:04 +08:00
admin 7967486af7 feat(tip): add character splash back button 2026-07-20 14:58:30 +08:00
5 changed files with 9 additions and 2 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 35 KiB

+2 -1
View File
@@ -68,7 +68,8 @@
.header {
display: flex;
align-items: center;
justify-content: flex-end;
justify-content: space-between;
gap: 12px;
}
.headerPill {
+7 -1
View File
@@ -4,7 +4,7 @@ import { useEffect, useMemo, useState, type CSSProperties } from "react";
import Image from "next/image";
import { Heart, Sparkles } from "lucide-react";
import { CharacterAvatar } from "@/app/_components";
import { BackButton, CharacterAvatar } from "@/app/_components";
import { MobileShell } from "@/app/_components/core";
import { PaymentMethodSelector } from "@/app/_components/payment/payment-method-selector";
import { usePaymentMethodSelection } from "@/app/_hooks/use-payment-method-selection";
@@ -225,6 +225,12 @@ export function TipScreen({
<div className={styles.bgGlowTwo} aria-hidden="true" />
<header className={styles.header}>
<BackButton
href={characterRoutes.splash}
variant="soft"
ariaLabel="Back to character home"
analyticsKey="tip.back_to_splash"
/>
<span className={styles.headerPill}>{character.copy.tipHeader}</span>
</header>