base done

This commit is contained in:
Michael Freno
2025-12-17 01:29:20 -05:00
parent 7479378dd1
commit e8009beacf
39 changed files with 735 additions and 11 deletions

View File

@@ -0,0 +1,16 @@
export default function LoadingSpinner(props: {
height: number;
width: number;
}) {
return (
<picture class="animate-spin-reverse flex w-full justify-center">
<source srcSet="/WhiteLogo.png" media="(prefers-color-scheme: dark)" />
<img
src="/BlackLogo.png"
alt="logo"
width={props.width}
height={props.height}
/>
</picture>
);
}