Initial commit: konesaliturku.fi website

Colocation/datacenter service website with:
- One-page main site (hero, services, pricing, contact form)
- Technical specs page (power, cooling, connectivity, security)
- Dark blue technical theme, fully responsive
- PHP backend for contact form with rate limiting

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-09 14:33:15 +02:00
commit 1ae342c1f5
7 changed files with 2073 additions and 0 deletions

15
server.py Normal file
View File

@@ -0,0 +1,15 @@
import subprocess
import sys
def main():
try:
subprocess.run(
["php", "-S", "localhost:3001"],
check=True
)
except KeyboardInterrupt:
print("\nServer stopped.")
sys.exit(0)
if __name__ == "__main__":
main()