···11import { APP_NAME } from "../../siteinfo";
2233-export function LogoImage() {
44- if (true)
33+type LogoImageProps = {
44+ enabled?: boolean;
55+ width: number;
66+ height: number;
77+};
88+99+export function LogoImage(props: LogoImageProps) {
1010+ if (props.enabled == false)
511 return null;
61277- // we can put on some more flags later to do things with like svg shenanigans
1313+ let width: number = props.width || 32;
1414+ let height: number = props.height || 32;
1515+816 return (<>
99- <img src="/logo.png" alt={`${APP_NAME} logo`} width="64px" height="64px" />
1717+ <img src="/logo.svg" alt={`${APP_NAME} logo`} width={`${width}px`} height={`${height}px`} />
1018 </>);
1119}
···2929 width="1200px"
3030 />
3131 <figcaption>
3232- An amazing picture of {APP_NAME}'s Dashboard, wow!
3232+ {APP_NAME} is full of features to help wrangle your social media.
3333 </figcaption>
3434 </figure>
3535 </center>
3636+ <hr />
3637 <h6 class="inline-header">Features:</h6>
3738 <ul>
3839 <li>Handles multiple users/accounts easily, supports most PDS instances</li>