From 0741a8b8e9a2099c82bff6d6b9ebbce9c07cad53 Mon Sep 17 00:00:00 2001 From: soryu Date: Mon, 22 Dec 2025 04:50:25 +0000 Subject: Update makima FE to add initial listening system --- makima/frontend/src/components/Masthead.tsx | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 makima/frontend/src/components/Masthead.tsx (limited to 'makima/frontend/src/components/Masthead.tsx') diff --git a/makima/frontend/src/components/Masthead.tsx b/makima/frontend/src/components/Masthead.tsx new file mode 100644 index 0000000..a89977f --- /dev/null +++ b/makima/frontend/src/components/Masthead.tsx @@ -0,0 +1,44 @@ +import { Link } from "react-router"; +import { LogoMark } from "./Logo"; +import { NavStrip } from "./NavStrip"; + +interface MastheadProps { + showTicker?: boolean; + showNav?: boolean; +} + +export function Masthead({ showTicker = false, showNav = true }: MastheadProps) { + return ( +
+
+ + +
+

+ makima.jp +

+ + Real-time Speech Recognition + +
+ +
+ + {showTicker && ( +
+
+
+ + /// MAKIMA INFORMATION SERVICE // REAL-TIME STT PLATFORM /// + TRANSPORT: WEBSOCKET /// ENCODING: PCM32F /// STATUS: ONLINE /// + MAKIMA.JP /// MAKIMA INFORMATION SERVICE // REAL-TIME STT PLATFORM + /// TRANSPORT: WEBSOCKET /// ENCODING: PCM32F /// STATUS: ONLINE /// + MAKIMA.JP /// + +
+ )} + + {showNav && } +
+ ); +} -- cgit v1.2.3