/* global React */
const { useState, useEffect, useRef } = React;
// ===== Icons =====
const Ic = {
arrow: (p) => (
),
arrowDown: (p) => (
),
back: (p) => (
),
plus: (p) => (
),
check: (p) => (
),
bigCheck: (p) => (
),
// service icons
comms: (p) => (
),
group: (p) => (
),
wrench: (p) => (
),
activity: (p) => (
),
fork: (p) => (
),
car: (p) => (
),
globe: (p) => (
),
alert: (p) => (
),
calendar: (p) => (
),
};
// ===== Logo =====
function Wordmark({ size = 40, alt = "Riga Local Host" }) {
return (
);
}
// ===== Placeholder image box =====
function PlaceholderImg({ label, dark, corner, style }) {
return (