![]() 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/-15db5fdf/ |
import React from 'react';
import LayoutWithSidebar from '../components/LayoutWithSidebar';
const StaticTestPage: React.FC = () => {
return (
<LayoutWithSidebar>
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<h1 className="text-3xl font-bold text-gray-900 mb-2">Static Test Page</h1>
<p className="text-gray-600 text-lg max-w-2xl">
This is a static test page to see if the layout is working.
</p>
<div className="mb-8">
<nav className="flex space-x-0 bg-white rounded-lg border shadow-sm w-fit overflow-hidden">
<button className="px-8 py-2 font-semibold text-sm bg-blue-600 text-white shadow-sm rounded-l-lg">
Overview
</button>
<button className="px-8 py-2 font-semibold text-sm bg-white text-blue-700 hover:bg-blue-50 border-l border-gray-200">
All Cases
</button>
<button className="px-8 py-2 font-semibold text-sm bg-white text-blue-700 hover:bg-blue-50 border-l border-gray-200 rounded-r-lg">
Analytics
</button>
</nav>
</div>
<div className="bg-white rounded-lg shadow p-6">
<h2 className="text-xl font-semibold mb-4">Test Content</h2>
<p>This is a test to see if the page renders correctly.</p>
</div>
</div>
</LayoutWithSidebar>
);
};
export default StaticTestPage;