![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/.cursor-server/data/User/History/7610502b/ |
import React from 'react';
const TestSimple: React.FC = () => {
return (
<div className="min-h-screen bg-gray-100 p-8">
<div className="max-w-4xl mx-auto">
<h1 className="text-4xl font-bold text-blue-600 mb-8">🧪 Simple Test Page</h1>
<div className="bg-white p-8 rounded-lg shadow-lg mb-8">
<h2 className="text-2xl font-semibold text-gray-800 mb-4">Basic Content Test</h2>
<p className="text-gray-600 mb-4">This is a simple test to see if basic content is loading.</p>
<p className="text-gray-600">If you can see this, the basic React rendering is working.</p>
</div>
<div className="bg-blue-50 p-8 rounded-lg border border-blue-200 mb-8">
<h2 className="text-2xl font-semibold text-blue-800 mb-4">Styled Content Test</h2>
<p className="text-blue-700 mb-4">This section tests if Tailwind CSS classes are working.</p>
<p className="text-blue-700">The background should be light blue with a blue border.</p>
</div>
<div className="bg-green-50 p-8 rounded-lg border border-green-200 mb-8">
<h2 className="text-2xl font-semibold text-green-800 mb-4">Interactive Test</h2>
<button className="bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-lg font-medium transition-colors">
Click me to test interactivity
</button>
</div>
<div className="bg-purple-50 p-8 rounded-lg border border-purple-200">
<h2 className="text-2xl font-semibold text-purple-800 mb-4">Navigation Test</h2>
<a href="/" className="text-purple-600 hover:text-purple-800 underline">
← Back to Home
</a>
</div>
</div>
</div>
);
};
export default TestSimple;