Use the app logo in the scan sidebar
This commit is contained in:
@@ -1,13 +1,14 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
|
import Image from "next/image";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import {
|
import {
|
||||||
Bolt,
|
|
||||||
CircleDot,
|
CircleDot,
|
||||||
Clock3,
|
Clock3,
|
||||||
Info,
|
Info,
|
||||||
Search,
|
Search,
|
||||||
TrendingUp,
|
TrendingUp,
|
||||||
|
Zap,
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
import { useI18n } from "@/hooks/useI18n";
|
import { useI18n } from "@/hooks/useI18n";
|
||||||
import type { ScanTerminalFilters } from "@/lib/dashboard-types";
|
import type { ScanTerminalFilters } from "@/lib/dashboard-types";
|
||||||
@@ -17,7 +18,7 @@ export interface FilterState extends ScanTerminalFilters {}
|
|||||||
const SCAN_MODES = [
|
const SCAN_MODES = [
|
||||||
{
|
{
|
||||||
key: "tradable" as const,
|
key: "tradable" as const,
|
||||||
icon: Bolt,
|
icon: Zap,
|
||||||
labelEn: "Tradable",
|
labelEn: "Tradable",
|
||||||
labelZh: "可交易机会",
|
labelZh: "可交易机会",
|
||||||
descEn: "Find the best immediate trade",
|
descEn: "Find the best immediate trade",
|
||||||
@@ -80,7 +81,13 @@ export function ScanFilterPanel({
|
|||||||
<aside className="scan-filter-panel">
|
<aside className="scan-filter-panel">
|
||||||
<div className="scan-sidebar-brand">
|
<div className="scan-sidebar-brand">
|
||||||
<div className="scan-sidebar-brand-mark">
|
<div className="scan-sidebar-brand-mark">
|
||||||
<Bolt size={22} strokeWidth={2.2} />
|
<Image
|
||||||
|
src="/favicon-32x32.png"
|
||||||
|
alt=""
|
||||||
|
width={24}
|
||||||
|
height={24}
|
||||||
|
priority
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div className="scan-sidebar-brand-name">PolyWeather</div>
|
<div className="scan-sidebar-brand-name">PolyWeather</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user