Initial frontend import
This commit is contained in:
17
src/components/ArkLogoMark.tsx
Normal file
17
src/components/ArkLogoMark.tsx
Normal 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
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user