Deploy: Complete TekDek documentation website with all content pages, CSS, and infrastructure

This commit is contained in:
ParzivalTD
2026-04-12 11:20:19 -04:00
parent 1be079d7a7
commit d8da25107e
29 changed files with 2627 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php if (!defined('TEKDEK')) die('Direct access not permitted.'); ?>
<section class="hero">
<h1>Welcome to TekDek</h1>
<p class="lead">Documentation &amp; Strategy Hub — where our vision, projects, and tools come together.</p>
</section>
<section class="grid cards">
<?php foreach ($MENU as $slug => $item): ?>
<?php if ($slug !== 'home' && $item['nav']): ?>
<?php $url = ($slug === 'team') ? SITE_BASE_URL . 'team.html' : page_url($slug); ?>
<a href="<?= e($url) ?>" class="card">
<span class="card-icon"><?= $item['icon'] ?></span>
<h3><?= e($item['title']) ?></h3>
</a>
<?php endif; ?>
<?php endforeach; ?>
</section>