···1import { APP_NAME } from "../../siteinfo";
23-export function LogoImage() {
4- if (true)
0000005 return null;
67- // we can put on some more flags later to do things with like svg shenanigans
008 return (<>
9- <img src="/logo.png" alt={`${APP_NAME} logo`} width="64px" height="64px" />
10 </>);
11}
···1import { APP_NAME } from "../../siteinfo";
23+type LogoImageProps = {
4+ enabled?: boolean;
5+ width: number;
6+ height: number;
7+};
8+9+export function LogoImage(props: LogoImageProps) {
10+ if (props.enabled == false)
11 return null;
1213+ let width: number = props.width || 32;
14+ let height: number = props.height || 32;
15+16 return (<>
17+ <img src="/logo.svg" alt={`${APP_NAME} logo`} width={`${width}px`} height={`${height}px`} />
18 </>);
19}
···29 width="1200px"
30 />
31 <figcaption>
32+ {APP_NAME} is full of features to help wrangle your social media.
33 </figcaption>
34 </figure>
35 </center>
36+ <hr />
37 <h6 class="inline-header">Features:</h6>
38 <ul>
39 <li>Handles multiple users/accounts easily, supports most PDS instances</li>