diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 96787b3..cd05082 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -3,6 +3,8 @@ name: Deploy API (GitHub Pages) on: push: branches: [ main ] + schedule: + - cron: '0 * * * *' workflow_dispatch: permissions: @@ -25,6 +27,7 @@ jobs: run: | python3 --version python3 scripts/API/emit_static_api.py + cp -r public_html/* public/ echo "[ls] public/" ls -lah public || true echo "[ls] public/api/" diff --git a/public_html/index.html b/public_html/index.html new file mode 100644 index 0000000..225dbb7 --- /dev/null +++ b/public_html/index.html @@ -0,0 +1,184 @@ + + + + + + RusherHack Addons + + + + + +
+

RusherHack Addons

+

A list of free and open-source RusherHack plugins and themes

+
+ +
+
+ + +
+
+ + +
+
+
+ +
+
+ +
+
+ + + + \ No newline at end of file diff --git a/public_html/style.css b/public_html/style.css new file mode 100644 index 0000000..d2a2737 --- /dev/null +++ b/public_html/style.css @@ -0,0 +1,23 @@ +body { + background-color: #0f1115; color: #d1d5db; + +} +.addon-card { + background-color: #13151a; border: 1px solid #232530; transition: all 0.3s ease; +} + +.addon-card:hover { + border-color: #8b5cf6; transform: translateY(-4px); +} + +.controls-bg { + background-color: #13151a; border: 1px solid #232530; +} + +input, select { + background-color: #0f1115 !important; border: 1px solid #232530 !important; color: white !important; outline: none; +} + +input:focus, select:focus { + border-color: #8b5cf6 !important; +} \ No newline at end of file