51 lines
2.3 KiB
PHP
51 lines
2.3 KiB
PHP
<?php
|
|
$title = 'Contact';
|
|
$description = 'The wise man does not hide. He simply waits to be found.';
|
|
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 mb-4">Contact</h1>
|
|
<p class="text-neutral-300 text-base mb-16 text-center">Get in touch. Feel free to send me gifs.</p>
|
|
<ul class="space-y-5">
|
|
<li>
|
|
<a href="mailto:admin@sistav.com" class="group">
|
|
<span class="flex items-baseline gap-2">
|
|
<span class="text-neutral-300 text-base group-hover:text-white transition-colors">Email</span>
|
|
<span class="text-neutral-400 text-base">admin@sistav.com</span>
|
|
</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/sistav" target="_blank" rel="noopener" class="group">
|
|
<span class="flex items-baseline gap-2">
|
|
<span class="text-neutral-300 text-base group-hover:text-white transition-colors">GitHub</span>
|
|
<span class="text-neutral-400 text-base">sistav</span>
|
|
</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://fosstodon.org/@Sistav" target="_blank" rel="noopener" class="group">
|
|
<span class="flex items-baseline gap-2">
|
|
<span class="text-neutral-300 text-base group-hover:text-white transition-colors">Mastodon</span>
|
|
<span class="text-neutral-400 text-base">@Sistav</span>
|
|
</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://twitter.com/NotSistav" target="_blank" rel="noopener" class="group">
|
|
<span class="flex items-baseline gap-2">
|
|
<span class="text-neutral-300 text-base group-hover:text-white transition-colors">Twitter</span>
|
|
<span class="text-neutral-400 text-base">@NotSistav</span>
|
|
</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|