From 64e9cfbacf472c45ee662528d5b8b33aea406b2f Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 13 Mar 2026 11:28:08 +0800 Subject: [PATCH] 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 --- logo/tck_logo.svg | 24 +++++++++++++++++++ sample_interface/index.html | 2 +- .../src/app/components/Header.tsx | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 logo/tck_logo.svg diff --git a/logo/tck_logo.svg b/logo/tck_logo.svg new file mode 100644 index 000000000..57c0e3467 --- /dev/null +++ b/logo/tck_logo.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sample_interface/index.html b/sample_interface/index.html index 123c122a1..9da11ed68 100644 --- a/sample_interface/index.html +++ b/sample_interface/index.html @@ -2,7 +2,7 @@ - + TCK RTU - Rainfall Monitoring diff --git a/sample_interface/src/app/components/Header.tsx b/sample_interface/src/app/components/Header.tsx index 6a3d24f8e..df0d33b40 100644 --- a/sample_interface/src/app/components/Header.tsx +++ b/sample_interface/src/app/components/Header.tsx @@ -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());