improve: better use of screen space on all pages

- Larger book spines on desktop (w-64 h-96)
- Wider spacing between books on shelf
- Game cover page: two-column layout on large screens
- Chapter reader: wider content area (800px on lg)
- Larger typography on desktop breakpoints

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
consultoria-as
2026-02-17 08:59:25 +00:00
parent 1f6225fc5e
commit 2e3f688d4f
6 changed files with 125 additions and 63 deletions

15
ecosystem.config.js Normal file
View File

@@ -0,0 +1,15 @@
module.exports = {
apps: [
{
name: "cronicas-de-los-reinos",
cwd: "/home/PaginaNovelasYRpg",
script: "node_modules/.bin/next",
args: "start -H 0.0.0.0 -p 3000",
env: {
NODE_ENV: "production",
},
max_restarts: 5,
restart_delay: 3000,
},
],
};