From 74fc631324253d6df830e8cceda76f7379341cff Mon Sep 17 00:00:00 2001 From: Scot Date: Sat, 9 May 2026 12:55:58 +0000 Subject: [PATCH] Initial marketing site - interactive layers widget, dark theme, responsive --- Dockerfile | 4 ++ index.html | 201 +++++++++++++++++++++++++++++++++++++++++++++++++++++ nginx.conf | 19 +++++ 3 files changed, 224 insertions(+) create mode 100644 Dockerfile create mode 100644 index.html create mode 100644 nginx.conf diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e11a8e9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM nginx:alpine +COPY index.html /usr/share/nginx/html/index.html +COPY nginx.conf /etc/nginx/conf.d/default.conf +EXPOSE 80 diff --git a/index.html b/index.html new file mode 100644 index 0000000..042032d --- /dev/null +++ b/index.html @@ -0,0 +1,201 @@ + + + + + +KlongKlong — Your AI Box. Built, Deployed, Managed. + + + + + + + +
+ +
+

Your AI box.
Built, deployed, managed.

+

A dedicated server running AI agents purpose-built for your business. Not a SaaS login. Not an API key. Your own infrastructure, your own agents, your own knowledge base.

+ Book a discovery call +
+
+
2Live client boxes
+
€1.37BFraud detected & blocked
+
15 minBox deployment time
+
24/7Agent availability
+
+
+ +

Everything your team needs to work with AI

+

Each box is a complete AI operations environment — agents, memory, integrations, and task routing — running on your own dedicated server.

+ +
+ +
+
+
+

AI Agents

+

Purpose-built for your workflows

+
+ +
+
+
+ Included + Agents that screen pitch decks, generate cost estimates, draft reports, process documents, and handle repetitive analysis. Each agent is trained on your domain — your terminology, your rules, your quality standards. +
+
+
+ +
+
+
+

Knowledge Base

+

Institutional memory that grows

+
+ +
+
+
+ Included + Your documents, SOPs, pricing rules, templates, and past decisions — structured so agents actually use them. The knowledge base learns from every interaction. When an agent encounters a new pattern, it’s captured and available going forward. +
+
+
+ +
+
+
+

Integrations

+

Connected to your tools

+
+ +
+
+
+ Included + Email, calendar, CRM, file storage, project management, messaging. Agents read from and write to the tools your team already uses. No copy-paste. No context switching. +
+
+
+ +
+
+
+

Human-in-the-Loop

+

Agents know when to escalate

+
+ +
+
+
+ Included + Decisions needing human judgment get routed to the right person with full context via Telegram or email. Approve, reject, or modify — agents learn from your decisions. +
+
+
+ +
+
+
+

Guardrails

+

Safety and audit built in

+
+ +
+
+
+ Included + PII detection, action gating, rate limiting, and complete audit trails. Read actions pass through. Write actions are reviewed. High-risk actions require your explicit approval. +
+
+
+ +
+
+
+

Managed Infrastructure

+

We handle the ops

+
+ +
+
+
+ Included + Monitoring, updates, backups, scaling, SSL, DNS. Your data stays isolated on your own dedicated server. You never touch Docker, SSH, or API keys. +
+
+
+ +
+ + +
+
+ +

Not another AI tool. An AI operations layer.

+

+
+

Not this

  • A chatbot bolted onto existing software
  • Multi-tenant SaaS with shared infrastructure
  • Generic AI that forgets everything between sessions
  • Per-seat pricing that punishes team growth
  • Vendor lock-in with no data portability
+

This

  • Purpose-built agents trained on your domain
  • Dedicated server — your data stays isolated
  • Knowledge base that grows with every interaction
  • Flat monthly fee — one box, unlimited use
  • You own everything — full data export anytime
+
+
+
+ +

Built for teams that do real work

+

We start with the workflows that cost you the most time and build agents that handle them end to end.

+
+
FUNDS

Investment & Project Finance

Deal screening, pitch deck analysis, sponsor due diligence, claim verification. Our fund analyst platform caught a €1.37B fraud — fabricated carbon credits, SBLC patterns, virtual office holding companies. Every sponsor claim is unverified until independently cross-referenced.

+
SERVICE

Service Businesses

Cost estimation, job scheduling, client communications, quoting. Our landscape estimating tool generates real proposals from a 1,472-item materials catalog with automatic labor suggestions, three-document output (proposal, work order, job cost report), and margin analysis.

+
OPS

Operations Teams

Compliance automation, vendor management, document processing, SOP enforcement. Agents that know your procedures, flag exceptions, and route decisions to the right person — with a complete audit trail.

+
+
+
+ +

From zero to running in weeks, not months

+

+
+

Discover

We map your workflows, documents, pain points, and tools. You tell us what costs you the most time.

+

Build

We deploy your box and build agents trained on your domain. Week one delivers a working MVP you can interact with.

+

Integrate

We connect your email, CRM, calendar, and file storage. Agents work where your team already works.

+

Iterate

Agents get smarter as the knowledge base grows. We monitor, tune, and expand — your box improves every month.

+
+
+
+

Ready to see what a box can do?

+

30-minute discovery call. We'll map your highest-impact workflows and show you what agents can handle.

+ Book a discovery call +
+
+
+ +
+ + diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..5e67774 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,19 @@ +server { + listen 80; + server_name klongklong.com www.klongklong.com; + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } + + location ~* \.(css|js|png|jpg|jpeg|gif|ico|svg|woff2)$ { + expires 7d; + add_header Cache-Control "public, immutable"; + } + + add_header X-Frame-Options "SAMEORIGIN" always; + add_header X-Content-Type-Options "nosniff" always; + add_header Referrer-Policy "strict-origin-when-cross-origin" always; +}