feat: Add high-conversion Main Landing Page and dedicated Military Culture Directorate Strategic Proposal Page

This commit is contained in:
Hamza-Ayed
2026-08-27 03:05:53 +03:00
parent ea9bd200f3
commit 0a31d359df
3 changed files with 930 additions and 4 deletions
+11 -4
View File
@@ -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());
});