Compare commits

..

3 Commits

Author SHA1 Message Date
directlx 56933f6e5c Updated team 2026-01-26 18:24:54 -05:00
directlx eca8dab1a8 Add venv/ and instance/ to .gitignore
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 12:41:18 -05:00
directlx 3d735707e5 Add default_server to nginx listen directive to handle requests without matching Host header from Nginx Proxy Manager
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 12:40:35 -05:00
3 changed files with 6 additions and 26 deletions

2
.gitignore vendored
View File

@ -12,6 +12,8 @@ __pycache__/
*.pyo
*.pyd
.env
venv/
instance/
# Logs
*.log

View File

@ -1,5 +1,5 @@
server {
listen 80;
listen 80 default_server;
server_name directlx.dev www.directlx.dev;
# Static files served directly by nginx

View File

@ -95,34 +95,12 @@
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="card text-center">
<div class="w-24 h-24 bg-gradient-to-br from-primary-400 to-primary-600 rounded-full mx-auto mb-4 flex items-center justify-center text-white text-2xl font-bold">
JD
JH
</div>
<h3 class="text-xl font-semibold text-gray-900">John Doe</h3>
<h3 class="text-xl font-semibold text-gray-900">Johannes</h3>
<p class="text-accent-500 mb-3">Founder & CEO</p>
<p class="text-gray-600 text-sm">
15+ years in software development. Passionate about clean code and scalable architectures.
</p>
</div>
<div class="card text-center">
<div class="w-24 h-24 bg-gradient-to-br from-primary-400 to-primary-600 rounded-full mx-auto mb-4 flex items-center justify-center text-white text-2xl font-bold">
JS
</div>
<h3 class="text-xl font-semibold text-gray-900">Jane Smith</h3>
<p class="text-accent-500 mb-3">Lead Developer</p>
<p class="text-gray-600 text-sm">
Full-stack expert with a focus on modern web technologies and user experience.
</p>
</div>
<div class="card text-center">
<div class="w-24 h-24 bg-gradient-to-br from-primary-400 to-primary-600 rounded-full mx-auto mb-4 flex items-center justify-center text-white text-2xl font-bold">
MJ
</div>
<h3 class="text-xl font-semibold text-gray-900">Mike Johnson</h3>
<p class="text-accent-500 mb-3">Solutions Architect</p>
<p class="text-gray-600 text-sm">
Cloud infrastructure specialist ensuring our solutions are robust and scalable.
25+ years in software development. Passionate about clean code and scalable architectures.
</p>
</div>
</div>