From c3175181c3fac4d8e4fcb9ae4e8661ad5181bc3d Mon Sep 17 00:00:00 2001 From: MaxIsJoe <34368774+MaxIsJoe@users.noreply.github.com> Date: Tue, 3 Mar 2026 04:31:12 +0200 Subject: [PATCH] feat: Launchers page --- app/launchers/page.tsx | 7 +++++++ app/launchers/presentation.tsx | 35 ++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 app/launchers/page.tsx create mode 100644 app/launchers/presentation.tsx diff --git a/app/launchers/page.tsx b/app/launchers/page.tsx new file mode 100644 index 0000000..5373bdf --- /dev/null +++ b/app/launchers/page.tsx @@ -0,0 +1,7 @@ +import DownloadPresentation from "./presentation"; + +const LaunchersPage = () => { + return () +} + +export default LaunchersPage; \ No newline at end of file diff --git a/app/launchers/presentation.tsx b/app/launchers/presentation.tsx new file mode 100644 index 0000000..fccfa67 --- /dev/null +++ b/app/launchers/presentation.tsx @@ -0,0 +1,35 @@ +import PageSection from "../common/uiLibrary/pageSection"; +import Panel from "../common/uiLibrary/panel"; +import PageHeading from "../common/uiLibrary/PageHeading"; +import LinkButton from "../common/uiLibrary/linkButton"; + +export default function DownloadPresentation() { + return ( + + + + Choose a launcher + Choose a launcher below to download and install. + + + + StationHub + The official UnityStation launcher. + + + + + + + PuduLauncher + The modern launcher for UnityStation. + + + + + + + + + ); +} \ No newline at end of file
Choose a launcher below to download and install.
The official UnityStation launcher.
The modern launcher for UnityStation.