feat: Add high-conversion Main Landing Page and dedicated Military Culture Directorate Strategic Proposal Page
This commit is contained in:
@@ -21,13 +21,20 @@ $router->use(\App\Middlewares\SecurityMiddleware::class);
|
||||
|
||||
// 4. Define Web and API Routes
|
||||
|
||||
// Root Redirect to Student Portal
|
||||
// Main Platform Landing Page (Public High-Conversion Showcase)
|
||||
$router->get('/', function ($request, $response) {
|
||||
header('Location: /student');
|
||||
exit;
|
||||
$response->html(\App\Views\LandingPage::render());
|
||||
});
|
||||
|
||||
// Web Portals (HTML + Alpine.js)
|
||||
// Dedicated Institutional Proposal for Military Culture Directorate
|
||||
$router->get('/military-culture', function ($request, $response) {
|
||||
$response->html(\App\Views\MilitaryCulturePitch::render());
|
||||
});
|
||||
$router->get('/military', function ($request, $response) {
|
||||
$response->html(\App\Views\MilitaryCulturePitch::render());
|
||||
});
|
||||
|
||||
// Web Portals (HTML + Native JavaScript)
|
||||
$router->get('/student', function ($request, $response) {
|
||||
$response->html(\App\Views\StudentPortal::render());
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user