27 lines
1.3 KiB
PHP
27 lines
1.3 KiB
PHP
<?php
|
|
$title = 'About';
|
|
$description = "The self bleeds into creation.";
|
|
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-8">About</h1>
|
|
<div class="space-y-5 text-neutral-300 leading-relaxed text-base">
|
|
<p>Welcome to sistav.com,</p>
|
|
<p>I'm Sistav, assuming you haven't figured that out already.</p>
|
|
<p>I'm a developer. I like Linux, Counter-Strike, and BMWs. I don't do web development very often, but I don't mind it for my own domain, it's quite fun trying to figure out what fits best.</p>
|
|
<p>I bought this domain to sit on. Eventually it became something more. The site was down for a year or two but in February 2026 I found the time to rebuild it.</p>
|
|
<p>The site has and always will be changing. I hope it brings you as much joy as it brings me. I like to think of it as a never ending expression of the person I am at the time</p>
|
|
<p>Feel free to contact me, about the site, something written on it, or anything else.</p>
|
|
<p>All The Best,</p>
|
|
<p>Sistav</p>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|