Initial frontend import

This commit is contained in:
TerryM
2026-05-16 00:18:22 +08:00
commit 9c54ffec76
99 changed files with 14992 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import logoSrc from "../assets/logo-primary.webp?url";
/** Primary ARK mark — imported so Vite emits a content-hashed URL (avoids stale inline-SVG JS + stable /assets/*.webp CDN cache). */
export function ArkLogoMark({ className = "" }: { className?: string }) {
return (
<img
src={logoSrc}
alt=""
className={["object-contain select-none", className]
.filter(Boolean)
.join(" ")}
decoding="async"
draggable={false}
aria-hidden
/>
);
}