36543-vm/index.php
Flatlogic Bot 4c235f6179 hell yea
2025-12-01 12:52:33 +00:00

50 lines
1.8 KiB
PHP

<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
include 'includes/header.php';
?>
<div class="hero text-center">
<div class="container">
<h1 class="display-4">Welcome to the AI Math Lecture Creator</h1>
<p class="lead">Your platform for generating engaging math video content with the power of AI.</p>
<a href="create_project.php" class="btn btn-primary btn-lg">Get Started</a>
</div>
</div>
<div class="container py-5">
<div class="row text-center">
<div class="col-md-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">1. Create a Project</h5>
<p class="card-text">Start by creating a new project to house your lecture scripts, simulations, and final videos.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">2. Generate Scripts</h5>
<p class="card-text">Use our AI-powered script generator to quickly create detailed and accurate mathematical lecture scripts.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">3. Render & Publish</h5>
<p class="card-text">Combine your scripts with simulations and generate a final video, ready to be shared with your students.</p>
</div>
</div>
</div>
</div>
<div class="text-center mt-5">
<a href="projects.php" class="btn btn-secondary">View All Projects</a>
</div>
</div>
<?php include 'includes/footer.php'; ?>