diff --git a/client/package.json b/client/package.json index 6000f43a..e6d4c936 100644 --- a/client/package.json +++ b/client/package.json @@ -15,6 +15,7 @@ "@dnd-kit/sortable": "^7.0.1", "@dnd-kit/utilities": "^3.2.0", "@floating-ui/react-dom-interactions": "^0.9.1", + "@fontsource/outfit": "^4.5.10", "@headlessui/react": "^1.6.6", "@mdx-js/mdx": "^2.1.2", "@mdx-js/react": "^2.1.2", diff --git a/client/src/components/Starmap/SystemMarker/SystemLabel.tsx b/client/src/components/Starmap/SystemMarker/SystemLabel.tsx index ec14270a..d4d4e2ac 100644 --- a/client/src/components/Starmap/SystemMarker/SystemLabel.tsx +++ b/client/src/components/Starmap/SystemMarker/SystemLabel.tsx @@ -30,7 +30,7 @@ const SystemLabel: React.FC<{ const textTexture = React.useMemo(() => { let texture = new TextTexture({ color, - fontFamily: 'Electrolize, "Gill Sans", sans-serif', + fontFamily: 'Electrolize, "Outfit", sans-serif', fontSize: 128, alignment: "right", text: name, diff --git a/client/src/main.tsx b/client/src/main.tsx index 0c47cab8..082e4707 100644 --- a/client/src/main.tsx +++ b/client/src/main.tsx @@ -2,6 +2,7 @@ import ReactDOM from "react-dom/client"; import "./theme.css"; import App from "./App"; import {initializeTabId} from "@thorium/tab-id"; +import "@fontsource/outfit"; initializeTabId(); diff --git a/client/src/pages/Releases/index.tsx b/client/src/pages/Releases/index.tsx index e0571d7c..b90ef957 100644 --- a/client/src/pages/Releases/index.tsx +++ b/client/src/pages/Releases/index.tsx @@ -1,3 +1,4 @@ +import {FaArrowLeft} from "react-icons/fa"; import {Link} from "react-router-dom"; // Uses a Vite plugin to load the actual data import releaseNotes from "./release-notes.json"; @@ -5,9 +6,13 @@ import releaseNotes from "./release-notes.json"; const Releases = () => { return (