26 lines
949 B
PHP
26 lines
949 B
PHP
<?php if (!defined('TEKDEK')) die('Direct access not permitted.'); ?>
|
|
|
|
<article class="page-content">
|
|
<h1>About TekDek</h1>
|
|
|
|
<?php
|
|
$content = load_content('about');
|
|
if ($content) {
|
|
echo $content;
|
|
} else {
|
|
?>
|
|
<h2>Vision & Strategy</h2>
|
|
<p>TekDek is a multifaceted organization covering multiple projects with a <strong>creative backend</strong> — meaning there's a living storyline behind the development.</p>
|
|
|
|
<h2>Core Concept</h2>
|
|
<ul>
|
|
<li>Individual <strong>Coders</strong> are separate personas — each with their own development style, expertise, quirks, personality, and personal brand.</li>
|
|
<li>Personas may or may not be attached to any given TekDek project.</li>
|
|
<li>Relationships between personas drive the narrative.</li>
|
|
</ul>
|
|
|
|
<h2>Our Mission</h2>
|
|
<p>Build quality software. Tell compelling stories. No corners cut.</p>
|
|
<?php } ?>
|
|
</article>
|