diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
deleted file mode 100644
index 9d6c57f..0000000
--- a/.github/workflows/docs.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-name: publish docs
-on:
- push:
- branches:
- - master
- - main
- - v2
-permissions:
- contents: write
-jobs:
- deploy:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - name: Configure Git Credentials
- run: |
- git config user.name github-actions[bot]
- git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- - uses: actions/setup-python@v5
- with:
- python-version: 3.x
- - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- - uses: actions/cache@v4
- with:
- key: mkdocs-material-${{ env.cache_id }}
- path: .cache
- restore-keys: |
- mkdocs-material-
- - run: pip install mkdocs-material
- - run: mkdocs gh-deploy --force
\ No newline at end of file
diff --git a/docs/assets/logo.svg b/docs/assets/logo.svg
deleted file mode 100644
index 1fa5052..0000000
--- a/docs/assets/logo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/docs/index.md b/docs/index.md
deleted file mode 100644
index 000ea34..0000000
--- a/docs/index.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Welcome to MkDocs
-
-For full documentation visit [mkdocs.org](https://www.mkdocs.org).
-
-## Commands
-
-* `mkdocs new [dir-name]` - Create a new project.
-* `mkdocs serve` - Start the live-reloading docs server.
-* `mkdocs build` - Build the documentation site.
-* `mkdocs -h` - Print help message and exit.
-
-## Project layout
-
- mkdocs.yml # The configuration file.
- docs/
- index.md # The documentation homepage.
- ... # Other markdown pages, images and other files.
diff --git a/mkdocs.yml b/mkdocs.yml
deleted file mode 100644
index 8857edb..0000000
--- a/mkdocs.yml
+++ /dev/null
@@ -1,55 +0,0 @@
-site_name: Gameyfin Docs (beta)
-site_url: https://gameyfin.github.io
-theme:
- name: material
- logo: assets/logo.svg
- favicon: assets/logo.svg
- palette:
- - media: "(prefers-color-scheme)"
- toggle:
- icon: material/brightness-auto
- name: Switch to light mode
- - media: "(prefers-color-scheme: light)"
- scheme: default
- primary: white
- accent: purple
- toggle:
- icon: material/brightness-7
- name: Switch to dark mode
- - media: "(prefers-color-scheme: dark)"
- scheme: slate
- primary: black
- accent: blue
- toggle:
- icon: material/brightness-4
- name: Switch to system preference
- font:
- code: JetBrains Mono
- features:
- - navigation.footer
- - search.suggest
- - search.highlight
-
-repo_url: https://github.com/gameyfin/gameyfin/tree/v2
-repo_name: gameyfin
-copyright: Copyright © grimsi and contributors
-
-plugins:
- - search
-
-markdown_extensions:
- - pymdownx.highlight:
- anchor_linenums: true
- line_spans: __span
- pygments_lang_class: true
- - pymdownx.inlinehilite
- - pymdownx.snippets
- - pymdownx.superfences:
- custom_fences:
- - name: mermaid
- class: mermaid
- format: !!python/name:pymdownx.superfences.fence_code_format
- - pymdownx.tabbed:
- alternate_style: true
- - admonition
- - pymdownx.details
\ No newline at end of file