Improve FAQ & video rendering, tighten homepage and CSS

This commit is contained in:
Andras Schmelczer 2026-05-04 22:07:30 +01:00
parent 05a1f316e1
commit c69bb0d614
48 changed files with 4689 additions and 1077 deletions

22
video/package.json Normal file
View file

@ -0,0 +1,22 @@
{
"name": "video",
"version": "1.0.0",
"private": true,
"description": "Scripted Playwright recording of the dashboard for the homepage hero and social ads.",
"type": "module",
"scripts": {
"build": "tsc",
"setup-auth": "tsc && node dist/auth.js",
"record": "tsc && node dist/record.js",
"record:vertical": "tsc && ASPECT=9x16 node dist/record.js",
"encode": "ffmpeg -y -i output/recording.webm -c:v libx264 -pix_fmt yuv420p -crf 16 -preset slow -movflags +faststart output/recording.mp4",
"render": "./render.sh"
},
"dependencies": {
"playwright": "^1.49.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}