feat: redesign AI test page with Ethereal Precision v2 (horizontal layout, ultra-wide) and fix Dockerfile OpenSSL issue
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 58s

This commit is contained in:
Antigravity
2026-05-03 13:09:04 +00:00
parent b611ec874d
commit aee4b17306
10 changed files with 751 additions and 226 deletions

View File

@@ -0,0 +1,11 @@
const fs = require('fs');
const file = 'app/(admin)/admin/settings/admin-settings-form.tsx';
let content = fs.readFileSync(file, 'utf-8');
// Replace any leftover <CardFooter> tags
content = content.replace(/<CardFooter>/g, '<div className="px-6 pb-6">');
content = content.replace(/<CardFooter className="([^"]+)">/g, '<div className="px-6 pb-6 $1">');
content = content.replace(/<\/CardFooter>/g, '</div>');
fs.writeFileSync(file, content);
console.log("Fixed CardFooters");