34 lines
1.5 KiB
PHP
34 lines
1.5 KiB
PHP
<?php
|
|
$page_title = 'Welcome to ExpenseTracker';
|
|
require_once 'includes/header.php';
|
|
?>
|
|
|
|
<section class="hero text-center">
|
|
<h1>Effortless Expense Reporting</h1>
|
|
<p class="lead">Simplify how your team tracks and manages expenses. Get a clear overview, approve reports on the fly, and keep your budget in check.</p>
|
|
<a href="dashboard.php" class="btn btn-primary btn-lg">View Manager Dashboard</a>
|
|
</section>
|
|
|
|
<div class="container mt-5 mb-5">
|
|
<div class="row text-center">
|
|
<div class="col-md-4">
|
|
<img src="https://picsum.photos/seed/submit/800/600" class="img-fluid rounded mb-3" alt="An agent submitting an expense report on a mobile device.">
|
|
<h3>Submit with Ease</h3>
|
|
<p>Agents can quickly submit expenses from anywhere, on any device.</p>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<img src="https://picsum.photos/seed/dashboard/800/600" class="img-fluid rounded mb-3" alt="A manager reviewing an expense dashboard on a tablet.">
|
|
<h3>Manage with Clarity</h3>
|
|
<p>Managers get a real-time dashboard to review and approve reports.</p>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<img src="https://picsum.photos/seed/insights/800/600" class="img-fluid rounded mb-3" alt="Charts and graphs showing expense analytics.">
|
|
<h3>Gain Instant Insights</h3>
|
|
<p>Track spending patterns and make informed budget decisions.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
require_once 'includes/footer.php';
|
|
?>
|