dbeck22's picture
that logo needs to be much bigger...here are some more images to put on the site
2750d05 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Beck-Publishing | Elite Software Developer & Builder</title>
<meta name="description" content="Learn about Beck-Publishing - a one-man studio capable of building what usually takes a team. Security-first mindset, real-world problem solving.">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-900 text-gray-100">
<custom-navbar></custom-navbar>
<main class="pt-20">
<!-- Hero Section -->
<section class="py-20 px-4 bg-gradient-to-br from-gray-900 via-gray-800 to-gray-900">
<div class="max-w-4xl mx-auto text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">The Builder Behind the Code</h1>
<p class="text-xl text-gray-300">A hands-on developer who delivers what others can't</p>
</div>
</section>
<!-- About Content -->
<section class="py-20 px-4">
<div class="max-w-4xl mx-auto">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div>
<div class="bg-gray-800 rounded-2xl p-8 hover-lift">
<img src="https://huggingface.co/spaces/dbeck22/beckpublishing-secure-code-crafters/resolve/main/images/workspace-dark.png" alt="Developer workspace" class="w-full h-64 object-cover rounded-xl mb-6">
<h2 class="text-2xl font-bold mb-4">Who I Am</h2>
<p class="text-gray-300 mb-4">
I'm a solo developer with the capability of a full team. I specialize in building
complex software systems that actually work in the real world.
</p>
<p class="text-gray-300">
My approach is straightforward: understand the problem, architect a robust solution,
and deliver clean, maintainable code that stands the test of time.
</p>
</div>
</div>
<div>
<div class="bg-gray-800 rounded-2xl p-8 hover-lift">
<i data-feather="shield" class="h-12 w-12 text-blue-400 mb-6"></i>
<h2 class="text-2xl font-bold mb-4">Security-First Mindset</h2>
<p class="text-gray-300 mb-4">
Every line of code is written with security in mind. I believe that robust systems
are built on foundations of trust and reliability.
</p>
<ul class="text-gray-300 space-y-2">
<li class="flex items-center">
<i data-feather="check" class="h-4 w-4 text-green-400 mr-2"></i>
Zero-trust architecture principles
</li>
<li class="flex items-center">
<i data-feather="check" class="h-4 w-4 text-green-400 mr-2"></i>
End-to-end encryption where needed
</li>
<li class="flex items-center">
<i data-feather="check" class="h-4 w-4 text-green-400 mr-2"></i>
Regular security audits and pentesting
</li>
</ul>
</div>
</div>
</div>
<!-- Philosophy -->
<div class="mt-20 text-center">
<h2 class="text-3xl font-bold mb-8">Building Philosophy</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-800 p-6 rounded-xl">
<i data-feather="target" class="h-10 w-10 text-purple-400 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Problem-First</h3>
<p class="text-gray-300">Solutions that address actual business needs, not just technical exercises.</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl">
<i data-feather="layers" class="h-10 w-10 text-blue-400 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Scalable Architecture</h3>
<p class="text-gray-300">Systems designed to grow with your business, not hold it back.</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl">
<i data-feather="clock" class="h-10 w-10 text-green-400 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Long-Term Value</h3>
<p class="text-gray-300">Code that remains maintainable and valuable for years to come.</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 px-4 bg-gradient-to-r from-blue-900 to-purple-900">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Build Together?</h2>
<p class="text-xl text-blue-200 mb-10">I'm available for the right project at the right price.</p>
<a href="/hire.html" class="bg-white text-blue-900 hover:bg-blue-50 font-bold py-4 px-12 rounded-full text-lg transition duration-300 transform hover:scale-105">
Start a Conversation
</a>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>