25 lines
755 B
PHP
25 lines
755 B
PHP
<?php
|
|
$pageTitle = "Welcome to Your Application";
|
|
include 'includes/header.php';
|
|
?>
|
|
|
|
|
|
|
|
<main>
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h1>Your New Application is Live</h1>
|
|
<p>Welcome to your newly launched platform. Powerful, scalable, and ready to conquer the world. Manage your operations from our streamlined admin panel.</p>
|
|
<a href="/admin.php" class="btn btn-primary">Go to Admin Panel</a>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="features">
|
|
<div class="container">
|
|
<!-- You can add feature highlights here in the future -->
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<?php include 'includes/footer.php'; ?>
|