diff --git a/web/source/settings-panel/old/admin/README.md b/web/source/settings-panel/old/admin/README.md
deleted file mode 100644
index 9a4572270..000000000
--- a/web/source/settings-panel/old/admin/README.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# GoToSocial Admin Panel
-
-Standalone web admin panel for [GoToSocial](https://github.com/superseriousbusiness/gotosocial).
-
-A public hosted instance is also available at https://gts.superseriousbusiness.org/admin/, so you can fill your own instance URL in there.
-
-## Installation
-Build requirements: some version of Node.js with npm,
-```
-git clone https://github.com/superseriousbusiness/gotosocial-admin.git && cd gotosocial-admin
-npm install
-node index.js
-```
-All processed build output will now be in `public/`, which you can copy over to a folder in your GoToSocial installation like `web/assets/admin`, or serve elsewhere.
-No further configuration is required, authentication happens through normal OAUTH flow.
-
-## Development
-Follow the installation steps, but run `NODE_ENV=development node index.js` to start the livereloading dev server instead.
-
-## License, donations
-[AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.html). If you want to support my work, you can:
\ No newline at end of file
diff --git a/web/source/settings-panel/old/admin/blocks.js b/web/source/settings-panel/old/admin/blocks.js
deleted file mode 100644
index a8251d7d9..000000000
--- a/web/source/settings-panel/old/admin/blocks.js
+++ /dev/null
@@ -1,318 +0,0 @@
-/*
- GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see .
-*/
-
-"use strict";
-
-const Promise = require("bluebird");
-const React = require("react");
-const fileDownload = require("js-file-download");
-
-function sortBlocks(blocks) {
- return blocks.sort((a, b) => { // alphabetical sort
- return a.domain.localeCompare(b.domain);
- });
-}
-
-function deduplicateBlocks(blocks) {
- let a = new Map();
- blocks.forEach((block) => {
- a.set(block.id, block);
- });
- return Array.from(a.values());
-}
-
-module.exports = function Blocks({oauth}) {
- const [blocks, setBlocks] = React.useState([]);
- const [info, setInfo] = React.useState("Fetching blocks");
- const [errorMsg, setError] = React.useState("");
- const [checked, setChecked] = React.useState(new Set());
-
- React.useEffect(() => {
- Promise.try(() => {
- return oauth.apiRequest("/api/v1/admin/domain_blocks", undefined, undefined, "GET");
- }).then((json) => {
- setInfo("");
- setError("");
- setBlocks(sortBlocks(json));
- }).catch((e) => {
- setError(e.message);
- setInfo("");
- });
- }, []);
-
- let blockList = blocks.map((block) => {
- function update(e) {
- let newChecked = new Set(checked.values());
- if (e.target.checked) {
- newChecked.add(block.id);
- } else {
- newChecked.delete(block.id);
- }
- setChecked(newChecked);
- }
-
- return (
-
-
-
-//
-// );
-// }
\ No newline at end of file
diff --git a/web/source/settings-panel/old/admin/style.css b/web/source/settings-panel/old/admin/style.css
deleted file mode 100644
index 01195437f..000000000
--- a/web/source/settings-panel/old/admin/style.css
+++ /dev/null
@@ -1,106 +0,0 @@
-/*
- GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see .
-*/
-
-section.info {
- form {
- grid-template-columns: auto 1fr;
- width: calc(100% - 0.35rem);
-
- input {
- width: 100%;
- line-height: 1.5rem;
- }
-
- label, input {
- padding: 0.2rem 0.5rem;
- }
-
- input[type=checkbox] {
- justify-self: start;
- width: initial;
- }
-
- input:read-only {
- border: none;
- }
-
- input:invalid {
- border-color: red;
- }
- }
-
- textarea {
- width: 100%;
- height: 8rem;
- }
-
- h1 {
- display: flex;
- justify-content: space-between;
- margin-bottom: 0.5rem;
- }
-}
-
-section.blocks {
- .overflow {
- max-height: 80vh;
- overflow-y: auto;
- }
-
- .blocklist {
- display: grid;
- grid-template-columns: auto 1fr auto;
- grid-gap: 0.35rem 0;
-
- div {
- background: rgb(70, 79, 88);
- padding: 0.2rem 0.4rem;
- }
- }
-
- .addblock {
- display: grid;
- grid-template-columns: 1fr auto auto;
- grid-gap: 0.35rem;
-
- input, select {
- font-size: 1.2rem;
- }
-
- input, select, textarea {
- padding: 0.5rem;
- }
-
- div {
- grid-column: 1/4;
- }
-
- div.single input {
- width: initial;
- }
- }
-
- h3 {
- margin-bottom: 0;
- }
-
- .controls {
- display: flex;
- gap: 0.5rem;
- }
-}