24 lines
982 B
PHP
24 lines
982 B
PHP
<?php
|
|
// index.php
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MAVI Landing Page</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body>
|
|
<div class="container d-flex justify-content-center align-items-center vh-100">
|
|
<div class="text-center">
|
|
<h1 style="font-family: 'Poppins', sans-serif;">Welcome to the MAVI Project</h1>
|
|
<p class="lead">The interactive learning platform for the MAVI museum.</p>
|
|
<a href="/games.php" class="btn btn-success mt-3">Play Games</a>
|
|
<a href="/admin/" class="btn btn-primary mt-3">Go to Admin Panel</a>
|
|
</div>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|