21 lines
605 B
PHP
21 lines
605 B
PHP
<?php
|
|
$title = 'About';
|
|
include $_SERVER['DOCUMENT_ROOT'] . '/includes/head.php';
|
|
?>
|
|
<body class="bg-[#0a0a0a] text-white min-h-screen">
|
|
<?php include $_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'; ?>
|
|
|
|
<main class="pt-16">
|
|
<div class="max-w-3xl mx-auto px-4 sm:px-6 py-12">
|
|
<h1 class="text-2xl font-semibold mb-12">About</h1>
|
|
<div class="space-y-5 text-neutral-300 leading-relaxed text-sm">
|
|
<p><!-- Who you are --></p>
|
|
<p><!-- What you do / what you're into --></p>
|
|
<p><!-- Anything else --></p>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|