<?php
ob_start();
$title = 'Home';
?>
<div class="card">
    <h2>Welcome to Hoonhub</h2>
    <p>A community-first automotive platform.</p>
</div>
<?php
$content = ob_get_clean();
require __DIR__ . '/../core/layout.php';