18 lines
1.1 KiB
PHP
18 lines
1.1 KiB
PHP
<?php
|
|
$page_title = 'Welcome';
|
|
require_once __DIR__ . '/header.php';
|
|
?>
|
|
|
|
<div class="bg-white rounded-lg shadow-md p-8 text-center">
|
|
<div class="max-w-2xl mx-auto">
|
|
<h1 class="text-4xl font-bold text-gray-800 mb-4">Client Case Management, Simplified</h1>
|
|
<p class="text-lg text-gray-600 mb-8">Welcome to your dedicated client portal. Request services, track case progress, and communicate with your account manager seamlessly. Get started by requesting a service below.</p>
|
|
<div class="flex justify-center gap-4">
|
|
<a href="request-service.php" class="inline-block px-8 py-3 text-lg font-medium text-white bg-indigo-600 rounded-md hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">Request a Service</a>
|
|
<a href="login.php" class="inline-block px-8 py-3 text-lg font-medium text-indigo-600 bg-indigo-100 rounded-md hover:bg-indigo-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">Log In</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once __DIR__ . '/footer.php'; ?>
|