Added new demonic pacts images and theme.

This commit is contained in:
2026-01-16 13:29:04 +08:00
parent ea8484fca7
commit e807d3c380
16 changed files with 1849 additions and 893 deletions

28
run-frontend.bat Normal file
View File

@@ -0,0 +1,28 @@
@echo off
REM Run the os-league-tools React frontend development server
echo Starting OS League Tools Frontend...
echo.
REM Change to the frontend directory
cd /d "%~dp0os-league-tools-master"
REM Check if node_modules exists
if not exist "node_modules" (
echo node_modules not found. Running npm install...
npm install
if errorlevel 1 (
echo npm install failed!
pause
exit /b 1
)
)
echo Starting development server on http://localhost:3000
echo Press Ctrl+C to stop the server
echo.
REM Run the development server
npm run dev
pause