{
@@ -65,7 +66,7 @@ function Banner(props: BannerType): JSXElement {
remove();
}}
>
-
+
}
/>
diff --git a/frontend/src/ts/components/layout/overlays/Overlays.tsx b/frontend/src/ts/components/layout/overlays/Overlays.tsx
index f57b236c0c3f..0c66dd4f836b 100644
--- a/frontend/src/ts/components/layout/overlays/Overlays.tsx
+++ b/frontend/src/ts/components/layout/overlays/Overlays.tsx
@@ -3,6 +3,7 @@ import { JSXElement } from "solid-js";
import { getIsScreenshotting } from "../../../signals/core";
import { showModal } from "../../../stores/modals";
import { cn } from "../../../utils/cn";
+import { Fa } from "../../common/Fa";
import { ScrollToTop } from "../footer/ScrollToTop";
import { Banners } from "./Banners";
@@ -28,7 +29,7 @@ export function Overlays(): JSXElement {
}}
tabIndex="-1"
>
-
+
diff --git a/frontend/src/ts/components/modals/ContactModal.tsx b/frontend/src/ts/components/modals/ContactModal.tsx
index 52601e075e10..6df442935430 100644
--- a/frontend/src/ts/components/modals/ContactModal.tsx
+++ b/frontend/src/ts/components/modals/ContactModal.tsx
@@ -22,48 +22,60 @@ export function ContactModal(): JSXElement {
diff --git a/frontend/src/ts/components/modals/SupportModal.tsx b/frontend/src/ts/components/modals/SupportModal.tsx
index d200222c5619..c60b3b33710e 100644
--- a/frontend/src/ts/components/modals/SupportModal.tsx
+++ b/frontend/src/ts/components/modals/SupportModal.tsx
@@ -4,6 +4,7 @@ import { setCommandlineSubgroup } from "../../signals/core";
import { showModal } from "../../stores/modals";
import { AnimatedModal } from "../common/AnimatedModal";
import { Button } from "../common/Button";
+import { Fa } from "../common/Fa";
export function SupportModal(): JSXElement {
const buttonClass = "p-4 flex flex-col text-md";
@@ -18,7 +19,7 @@ export function SupportModal(): JSXElement {
Thank you so much for thinking about supporting this project. It would
not be possible without you and your continued support.{" "}
-
+
diff --git a/frontend/src/ts/components/pages/AboutPage.tsx b/frontend/src/ts/components/pages/AboutPage.tsx
index 16e54aa72c13..f555bb22249b 100644
--- a/frontend/src/ts/components/pages/AboutPage.tsx
+++ b/frontend/src/ts/components/pages/AboutPage.tsx
@@ -10,20 +10,21 @@ import { getNumberWithMagnitude, numberWithSpaces } from "../../utils/numbers";
import AsyncContent from "../common/AsyncContent";
import { Button } from "../common/Button";
import { ChartJs } from "../common/ChartJs";
+import { Fa, FaProps } from "../common/Fa";
-function H2(props: { icon: string; text: string }): JSXElement {
+function H2(props: { text: string; fa: FaProps }): JSXElement {
return (
-
+
{props.text}
);
}
-function H3(props: { icon: string; text: string }): JSXElement {
+function H3(props: { text: string; fa: FaProps }): JSXElement {
return (
-
+
{props.text}
);
@@ -158,7 +159,7 @@ export function AboutPage(): JSXElement {