VIBN Frontend for Coolify deployment

This commit is contained in:
2026-02-15 19:25:52 -08:00
commit 40bf8428cd
398 changed files with 76513 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
'use client';
export default function AuditTestPage() {
return (
<div className="p-8">
<h1 className="text-3xl font-bold">Audit Test Page</h1>
<p className="mt-4">If you can see this, routing is working!</p>
<button
onClick={() => alert('Button works!')}
className="mt-4 px-4 py-2 bg-blue-500 text-white rounded"
>
Test Button
</button>
</div>
);
}