fix(logo): Rename logo to tck_logo.svg and update favicon

- Renamed [LOGO] TCK.svg to tck_logo.svg (simpler filename)
- Updated Header.tsx to use new logo path
- Updated index.html favicon to use tck_logo.svg
This commit is contained in:
2026-03-13 11:28:08 +08:00
parent 30397732f9
commit 64e9cfbacf
3 changed files with 26 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="/tck_logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TCK RTU - Rainfall Monitoring</title>
</head>

View File

@@ -4,7 +4,7 @@ import { useSensorStore } from "../stores/sensorStore";
import { VoltageDisplay } from "./VoltageDisplay";
import { BatteryStatus } from "./BatteryStatus";
import { LoginIndicator } from "./LoginIndicator";
import TCKLogo from "../../../../logo/[LOGO] TCK.svg?react";
import TCKLogo from "../../../../logo/tck_logo.svg?react";
export function Header() {
const [currentTime, setCurrentTime] = useState(new Date());