feat: add DetailPanel component for displaying city-specific weather data and charts
This commit is contained in:
@@ -451,12 +451,22 @@ export function DetailPanel() {
|
|||||||
<section className="detail-section">
|
<section className="detail-section">
|
||||||
<div className="detail-card">
|
<div className="detail-card">
|
||||||
<span className="detail-label">
|
<span className="detail-label">
|
||||||
{locale === "en-US" ? "Pro features" : "Pro 功能"}
|
{isPro
|
||||||
|
? locale === "en-US"
|
||||||
|
? "Detail sync"
|
||||||
|
: "详情同步"
|
||||||
|
: locale === "en-US"
|
||||||
|
? "Pro features"
|
||||||
|
: "Pro 功能"}
|
||||||
</span>
|
</span>
|
||||||
<span className="detail-value" style={{ fontSize: "15px" }}>
|
<span className="detail-value" style={{ fontSize: "15px" }}>
|
||||||
{locale === "en-US"
|
{isPro
|
||||||
? "Intraday analysis, history reconciliation, and deeper structure signals require Pro."
|
? locale === "en-US"
|
||||||
: "今日日内分析、历史对账和更深入的结构信号需要 Pro。"}
|
? "Full city detail is still syncing. The deeper panel will appear automatically."
|
||||||
|
: "完整城市详情仍在同步中,深度面板会自动补齐。"
|
||||||
|
: locale === "en-US"
|
||||||
|
? "Intraday analysis, history reconciliation, and deeper structure signals require Pro."
|
||||||
|
: "今日日内分析、历史对账和更深入的结构信号需要 Pro。"}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
Reference in New Issue
Block a user