Refactor BottomNav and CommunityPage to enhance community forum integration; update navigation logic for mobile and desktop views. Add new localized strings for community page and system settings, including device information and user prompts.

This commit is contained in:
yangy
2026-05-13 17:42:26 +08:00
parent 5285b886ea
commit b3d3f0edcb
9 changed files with 372 additions and 92 deletions
+12 -2
View File
@@ -574,7 +574,12 @@ export default function Home() {
>
<Sliders size={22} className={(!bypassOn && ds.peqEnable === 1) ? "text-[#00FFF6]" : "text-white/60"} />
</button>
<span className={cn("text-[11px]", (!bypassOn && ds.peqEnable === 1) ? "text-[#00FFF6]" : "text-white/35")}>HP-EQ</span>
<div className="flex flex-col items-center gap-0.5">
<span className={cn("text-[11px]", (!bypassOn && ds.peqEnable === 1) ? "text-[#00FFF6]" : "text-white/35")}>HP-EQ</span>
<span className="text-[9px] text-white/25 text-center leading-snug max-w-[76px]">
{homeText.doubleClickHint ?? "Double-click to enter"}
</span>
</div>
</div>
{/* Effect */}
@@ -586,7 +591,12 @@ export default function Home() {
>
<Activity size={22} className={(!bypassOn && effectOn) ? "text-[#00FFF6]" : "text-white/60"} />
</button>
<span className={cn("text-[11px]", (!bypassOn && effectOn) ? "text-[#00FFF6]" : "text-white/35")}>Effect</span>
<div className="flex flex-col items-center gap-0.5">
<span className={cn("text-[11px]", (!bypassOn && effectOn) ? "text-[#00FFF6]" : "text-white/35")}>Effect</span>
<span className="text-[9px] text-white/25 text-center leading-snug max-w-[76px]">
{homeText.doubleClickHint ?? "Double-click to enter"}
</span>
</div>
</div>
{/* Bypass (DSP) */}