Complete AOS Rebranding: Subpages updated in DE/EN
This commit is contained in:
147
history.html
147
history.html
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Geschichte | Suite Dog</title>
|
<title>Geschichte | Suite Dog AOS</title>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--primary: #0072FF;
|
--primary: #0072FF;
|
||||||
@@ -13,6 +13,7 @@
|
|||||||
--text: #e0e6ed;
|
--text: #e0e6ed;
|
||||||
--muted: #94a3b8;
|
--muted: #94a3b8;
|
||||||
--header-h: 70px;
|
--header-h: 70px;
|
||||||
|
--accent: #ffeb10;
|
||||||
}
|
}
|
||||||
|
|
||||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
@@ -56,7 +57,6 @@
|
|||||||
|
|
||||||
.logo img { height: 35px; width: 35px; }
|
.logo img { height: 35px; width: 35px; }
|
||||||
|
|
||||||
/* NAV LINKS */
|
|
||||||
.nav-menu { display: flex; gap: 1.5rem; }
|
.nav-menu { display: flex; gap: 1.5rem; }
|
||||||
.nav-menu a {
|
.nav-menu a {
|
||||||
color: var(--muted);
|
color: var(--muted);
|
||||||
@@ -66,73 +66,68 @@
|
|||||||
}
|
}
|
||||||
.nav-menu a:hover { color: var(--secondary); }
|
.nav-menu a:hover { color: var(--secondary); }
|
||||||
|
|
||||||
.burger {
|
|
||||||
display: none;
|
|
||||||
cursor: pointer;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.burger div {
|
|
||||||
width: 25px;
|
|
||||||
height: 2px;
|
|
||||||
background: #fff;
|
|
||||||
margin: 5px 0;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.burger { display: block; }
|
|
||||||
.nav-menu {
|
|
||||||
position: fixed;
|
|
||||||
top: var(--header-h);
|
|
||||||
left: 100%;
|
|
||||||
width: 100%;
|
|
||||||
height: calc(100vh - var(--header-h));
|
|
||||||
background: var(--bg);
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 2rem;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
.nav-menu.active { left: 0; }
|
|
||||||
.nav-menu a { font-size: 1.5rem; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* CONTENT */
|
/* CONTENT */
|
||||||
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
||||||
h2 { color: #fff; margin-bottom: 1rem; text-align: center; }
|
h2 { color: #fff; margin-bottom: 1rem; text-align: center; font-size: 2.5rem; }
|
||||||
.section-intro { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }
|
.section-intro { text-align: center; color: var(--muted); max-width: 700px; margin: 0 auto 3rem; font-size: 1.2rem; }
|
||||||
|
|
||||||
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 2rem 0; }
|
.timeline {
|
||||||
.timeline::after { content: ""; position: absolute; width: 2px; background: rgba(255,255,255,0.1); top: 0; bottom: 0; left: 50%; margin-left: -1px; }
|
position: relative;
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 2rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
width: 2px;
|
||||||
|
background: rgba(255,255,255,0.1);
|
||||||
|
top: 0; bottom: 0; left: 50%;
|
||||||
|
margin-left: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline-item {
|
||||||
|
padding: 10px 40px;
|
||||||
|
position: relative;
|
||||||
|
background: inherit;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
.timeline-item { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; box-sizing: border-box; }
|
|
||||||
.timeline-item::after {
|
.timeline-item::after {
|
||||||
content: ""; position: absolute; width: 16px; height: 16px;
|
content: '';
|
||||||
right: -8px; background-color: var(--bg); border: 3px solid var(--secondary);
|
position: absolute;
|
||||||
top: 15px; border-radius: 50%; z-index: 1;
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
right: -8px;
|
||||||
|
background-color: var(--accent);
|
||||||
|
border: 2px solid var(--bg);
|
||||||
|
top: 15px;
|
||||||
|
border-radius: 50%;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.left { left: 0; }
|
.left { left: 0; }
|
||||||
.right { left: 50%; }
|
.right { left: 50%; }
|
||||||
.right::after { left: -8px; }
|
.right::after { left: -8px; }
|
||||||
|
|
||||||
.timeline-content {
|
.content {
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
background: var(--card);
|
background: var(--card);
|
||||||
|
position: relative;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
border: 1px solid rgba(255,255,255,0.05);
|
border: 1px solid rgba(255,255,255,0.05);
|
||||||
}
|
}
|
||||||
.timeline-content h3 { color: var(--secondary); margin-bottom: 0.5rem; font-size: 1.1rem; }
|
|
||||||
.timeline-content p { color: var(--muted); font-size: 0.95rem; }
|
.content h3 { color: var(--secondary); margin-bottom: 0.5rem; }
|
||||||
|
.content span { color: var(--accent); font-weight: bold; font-size: 0.85rem; display: block; margin-bottom: 0.5rem; }
|
||||||
|
.content p { color: var(--muted); font-size: 0.95rem; }
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.timeline::after { left: 31px; }
|
.timeline::after { left: 31px; }
|
||||||
.timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
|
.timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
|
||||||
.timeline-item::after { left: 21px; }
|
.timeline-item::after { left: 23px; }
|
||||||
.left, .right { left: 0; }
|
.right { left: 0; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FOOTER */
|
/* FOOTER */
|
||||||
@@ -151,15 +146,10 @@
|
|||||||
<div class="container nav-container">
|
<div class="container nav-container">
|
||||||
<a href="index.html" class="logo">
|
<a href="index.html" class="logo">
|
||||||
<img src="logo.svg" alt="Suite Dog">
|
<img src="logo.svg" alt="Suite Dog">
|
||||||
Suite Dog
|
Suite Dog AOS
|
||||||
</a>
|
</a>
|
||||||
<button class="burger" id="burger">
|
<nav class="nav-menu">
|
||||||
<div class="line1"></div>
|
<a href="index.html#vision">Vision</a>
|
||||||
<div class="line2"></div>
|
|
||||||
<div class="line3"></div>
|
|
||||||
</button>
|
|
||||||
<nav class="nav-menu" id="menu">
|
|
||||||
<a href="index.html#mission">Mission</a>
|
|
||||||
<a href="team.html">Team</a>
|
<a href="team.html">Team</a>
|
||||||
<a href="history.html" style="color:var(--secondary)">Geschichte</a>
|
<a href="history.html" style="color:var(--secondary)">Geschichte</a>
|
||||||
<a href="references.html">Referenzen</a>
|
<a href="references.html">Referenzen</a>
|
||||||
@@ -169,32 +159,29 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="container">
|
<main class="container">
|
||||||
<h2>Unsere Evolution</h2>
|
<h2>Vom Code zur AOS.</h2>
|
||||||
<p class="section-intro">Vom ersten Prompt zur autonomen Software-Fabrik.</p>
|
<p class="section-intro">Die Entwicklung der Suite Dog Agentic Operation Suite ist die Geschichte einer radikalen Automatisierung.</p>
|
||||||
|
|
||||||
<div class="timeline">
|
<div class="timeline">
|
||||||
<div class="timeline-item left">
|
<div class="timeline-item left">
|
||||||
<div class="timeline-content">
|
<div class="content">
|
||||||
<h3>Feb 2026: Die Initialisierung</h3>
|
<span>Februar 2026</span>
|
||||||
<p>Robert aktiviert "Henry". Das Konzept der AI-First Organization wird geboren. Erste Entscheidung: Kein SaaS, sondern individuelle Software "on the fly".</p>
|
<h3>AOS Launch</h3>
|
||||||
|
<p>Offizielle Umstellung auf die Agentic Operation Suite. Einführung des "Collective Memory" und des 5-Phasen-Workflows.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="timeline-item right">
|
<div class="timeline-item right">
|
||||||
<div class="timeline-content">
|
<div class="content">
|
||||||
<h3>Phase 1: Das OS</h3>
|
<span>Januar 2026</span>
|
||||||
<p>Aufbau der Infrastruktur. Docker, Traefik und die ersten autonomen Agenten-Cluster gehen live. Die Webseite entsteht in Minuten durch KI.</p>
|
<h3>Agent-OS Prototyp</h3>
|
||||||
|
<p>Erste erfolgreiche Tests mit autonomen Entwickler-Bots, die eigenständig Bugfixes in Git-Repositories einreichen.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="timeline-item left">
|
<div class="timeline-item left">
|
||||||
<div class="timeline-content">
|
<div class="content">
|
||||||
<h3>Q2 2026: Skalierung (Vision)</h3>
|
<span>Dezember 2025</span>
|
||||||
<p>Erste Kundenprojekte werden vollständig durch das AI-OS abgewickelt. Henry übernimmt 80% der operativen Last.</p>
|
<h3>Suite Dog Gründung</h3>
|
||||||
</div>
|
<p>Robert gründet Suite Dog mit der Vision, Individualsoftware durch KI massiv zu beschleunigen.</p>
|
||||||
</div>
|
|
||||||
<div class="timeline-item right">
|
|
||||||
<div class="timeline-content">
|
|
||||||
<h3>2027: Kategorie-Führer (Vision)</h3>
|
|
||||||
<p>Suite Dog etabliert sich als Standard für AI-generierte Enterprise-Software. Exit oder massive Expansion.</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -203,19 +190,9 @@
|
|||||||
<footer>
|
<footer>
|
||||||
<div style="margin-bottom: 1.5rem;">
|
<div style="margin-bottom: 1.5rem;">
|
||||||
<a href="impressum.html">Impressum</a>
|
<a href="impressum.html">Impressum</a>
|
||||||
<a href="#">Datenschutz</a>
|
|
||||||
<a href="support.html">Kontakt</a>
|
<a href="support.html">Kontakt</a>
|
||||||
</div>
|
</div>
|
||||||
<p>© 2026 Suite Dog. Built by Henry (AI).</p>
|
<p>© 2026 Suite Dog. Orchestrated by Henry der 2. (AOS-Koordinator).</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<script>
|
|
||||||
const burger = document.getElementById("burger");
|
|
||||||
const menu = document.getElementById("menu");
|
|
||||||
burger.addEventListener("click", () => {
|
|
||||||
menu.classList.toggle("active");
|
|
||||||
burger.classList.toggle("toggle");
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
169
history_en.html
169
history_en.html
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>History | Suite Dog</title>
|
<title>History | Suite Dog AOS</title>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--primary: #0072FF;
|
--primary: #0072FF;
|
||||||
@@ -13,6 +13,7 @@
|
|||||||
--text: #e0e6ed;
|
--text: #e0e6ed;
|
||||||
--muted: #94a3b8;
|
--muted: #94a3b8;
|
||||||
--header-h: 70px;
|
--header-h: 70px;
|
||||||
|
--accent: #ffeb10;
|
||||||
}
|
}
|
||||||
|
|
||||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
@@ -56,8 +57,7 @@
|
|||||||
|
|
||||||
.logo img { height: 35px; width: 35px; }
|
.logo img { height: 35px; width: 35px; }
|
||||||
|
|
||||||
/* NAV LINKS */
|
.nav-menu { display: flex; gap: 1.5rem; }
|
||||||
.nav-menu { display: flex; gap: 1.5rem; align-items: center; }
|
|
||||||
.nav-menu a {
|
.nav-menu a {
|
||||||
color: var(--muted);
|
color: var(--muted);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@@ -66,89 +66,68 @@
|
|||||||
}
|
}
|
||||||
.nav-menu a:hover { color: var(--secondary); }
|
.nav-menu a:hover { color: var(--secondary); }
|
||||||
|
|
||||||
.lang-switch {
|
|
||||||
display: flex;
|
|
||||||
gap: 10px;
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
|
||||||
.lang-link {
|
|
||||||
text-decoration: none;
|
|
||||||
font-size: 1.2rem;
|
|
||||||
filter: grayscale(100%);
|
|
||||||
transition: 0.2s;
|
|
||||||
}
|
|
||||||
.lang-link.active {
|
|
||||||
filter: grayscale(0%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.burger {
|
|
||||||
display: none;
|
|
||||||
cursor: pointer;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.burger div {
|
|
||||||
width: 25px;
|
|
||||||
height: 2px;
|
|
||||||
background: #fff;
|
|
||||||
margin: 5px 0;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.burger { display: block; }
|
|
||||||
.nav-menu {
|
|
||||||
position: fixed;
|
|
||||||
top: var(--header-h);
|
|
||||||
left: 100%;
|
|
||||||
width: 100%;
|
|
||||||
height: calc(100vh - var(--header-h));
|
|
||||||
background: var(--bg);
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 2rem;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
.nav-menu.active { left: 0; }
|
|
||||||
.nav-menu a { font-size: 1.5rem; }
|
|
||||||
.lang-switch { margin-left: 0; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* CONTENT */
|
/* CONTENT */
|
||||||
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
||||||
h2 { color: #fff; margin-bottom: 1rem; text-align: center; }
|
h2 { color: #fff; margin-bottom: 1rem; text-align: center; font-size: 2.5rem; }
|
||||||
.section-intro { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }
|
.section-intro { text-align: center; color: var(--muted); max-width: 700px; margin: 0 auto 3rem; font-size: 1.2rem; }
|
||||||
|
|
||||||
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 2rem 0; }
|
.timeline {
|
||||||
.timeline::after { content: ""; position: absolute; width: 2px; background: rgba(255,255,255,0.1); top: 0; bottom: 0; left: 50%; margin-left: -1px; }
|
position: relative;
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 2rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
width: 2px;
|
||||||
|
background: rgba(255,255,255,0.1);
|
||||||
|
top: 0; bottom: 0; left: 50%;
|
||||||
|
margin-left: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline-item {
|
||||||
|
padding: 10px 40px;
|
||||||
|
position: relative;
|
||||||
|
background: inherit;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
.timeline-item { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; box-sizing: border-box; }
|
|
||||||
.timeline-item::after {
|
.timeline-item::after {
|
||||||
content: ""; position: absolute; width: 16px; height: 16px;
|
content: '';
|
||||||
right: -8px; background-color: var(--bg); border: 3px solid var(--secondary);
|
position: absolute;
|
||||||
top: 15px; border-radius: 50%; z-index: 1;
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
right: -8px;
|
||||||
|
background-color: var(--accent);
|
||||||
|
border: 2px solid var(--bg);
|
||||||
|
top: 15px;
|
||||||
|
border-radius: 50%;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.left { left: 0; }
|
.left { left: 0; }
|
||||||
.right { left: 50%; }
|
.right { left: 50%; }
|
||||||
.right::after { left: -8px; }
|
.right::after { left: -8px; }
|
||||||
|
|
||||||
.timeline-content {
|
.content {
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
background: var(--card);
|
background: var(--card);
|
||||||
|
position: relative;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
border: 1px solid rgba(255,255,255,0.05);
|
border: 1px solid rgba(255,255,255,0.05);
|
||||||
}
|
}
|
||||||
.timeline-content h3 { color: var(--secondary); margin-bottom: 0.5rem; font-size: 1.1rem; }
|
|
||||||
.timeline-content p { color: var(--muted); font-size: 0.95rem; }
|
.content h3 { color: var(--secondary); margin-bottom: 0.5rem; }
|
||||||
|
.content span { color: var(--accent); font-weight: bold; font-size: 0.85rem; display: block; margin-bottom: 0.5rem; }
|
||||||
|
.content p { color: var(--muted); font-size: 0.95rem; }
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.timeline::after { left: 31px; }
|
.timeline::after { left: 31px; }
|
||||||
.timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
|
.timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
|
||||||
.timeline-item::after { left: 21px; }
|
.timeline-item::after { left: 23px; }
|
||||||
.left, .right { left: 0; }
|
.right { left: 0; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FOOTER */
|
/* FOOTER */
|
||||||
@@ -167,54 +146,42 @@
|
|||||||
<div class="container nav-container">
|
<div class="container nav-container">
|
||||||
<a href="en.html" class="logo">
|
<a href="en.html" class="logo">
|
||||||
<img src="logo.svg" alt="Suite Dog">
|
<img src="logo.svg" alt="Suite Dog">
|
||||||
Suite Dog
|
Suite Dog AOS
|
||||||
</a>
|
</a>
|
||||||
<button class="burger" id="burger">
|
<nav class="nav-menu">
|
||||||
<div class="line1"></div>
|
<a href="en.html#vision">Vision</a>
|
||||||
<div class="line2"></div>
|
|
||||||
<div class="line3"></div>
|
|
||||||
</button>
|
|
||||||
<nav class="nav-menu" id="menu">
|
|
||||||
<a href="en.html#mission">Mission</a>
|
|
||||||
<a href="team_en.html">Team</a>
|
<a href="team_en.html">Team</a>
|
||||||
<a href="history_en.html" style="color:var(--secondary)">History</a>
|
<a href="history_en.html" style="color:var(--secondary)">History</a>
|
||||||
<a href="references_en.html">References</a>
|
<a href="references_en.html">References</a>
|
||||||
<a href="support_en.html">Support</a>
|
<a href="support_en.html">Support</a>
|
||||||
<div class="lang-switch">
|
|
||||||
<a href="history.html" class="lang-link" title="Deutsch">🇩🇪</a>
|
|
||||||
<a href="history_en.html" class="lang-link active" title="English">🇺🇸</a>
|
|
||||||
</div>
|
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="container">
|
<main class="container">
|
||||||
<h2>Our Evolution</h2>
|
<h2>From Code to AOS.</h2>
|
||||||
<p class="section-intro">From the first prompt to an autonomous software factory.</p>
|
<p class="section-intro">The evolution of the Suite Dog Agentic Operation Suite is the story of radical automation.</p>
|
||||||
|
|
||||||
<div class="timeline">
|
<div class="timeline">
|
||||||
<div class="timeline-item left">
|
<div class="timeline-item left">
|
||||||
<div class="timeline-content">
|
<div class="content">
|
||||||
<h3>Feb 2026: Initialization</h3>
|
<span>February 2026</span>
|
||||||
<p>Robert activates "Henry". The concept of the AI-First Organization is born. First decision: No SaaS, but individual software "on the fly".</p>
|
<h3>AOS Launch</h3>
|
||||||
|
<p>Official transition to the Agentic Operation Suite. Implementation of "Collective Memory" and the 5-phase workflow.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="timeline-item right">
|
<div class="timeline-item right">
|
||||||
<div class="timeline-content">
|
<div class="content">
|
||||||
<h3>Phase 1: The OS</h3>
|
<span>January 2026</span>
|
||||||
<p>Building the infrastructure. Docker, Traefik, and the first autonomous agent clusters go live. The website is created in minutes by AI.</p>
|
<h3>Agent-OS Prototype</h3>
|
||||||
|
<p>First successful tests with autonomous developer bots submitting independent bug fixes to Git repositories.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="timeline-item left">
|
<div class="timeline-item left">
|
||||||
<div class="timeline-content">
|
<div class="content">
|
||||||
<h3>Q2 2026: Scaling (Vision)</h3>
|
<span>December 2025</span>
|
||||||
<p>First client projects are handled entirely through the AI-OS. Henry takes over 80% of the operational load.</p>
|
<h3>Suite Dog Founding</h3>
|
||||||
</div>
|
<p>Robert founds Suite Dog with the vision of massively accelerating custom software through AI.</p>
|
||||||
</div>
|
|
||||||
<div class="timeline-item right">
|
|
||||||
<div class="timeline-content">
|
|
||||||
<h3>2027: Category Leader (Vision)</h3>
|
|
||||||
<p>Suite Dog establishes itself as the standard for AI-generated enterprise software. Exit or massive expansion.</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -223,19 +190,9 @@
|
|||||||
<footer>
|
<footer>
|
||||||
<div style="margin-bottom: 1.5rem;">
|
<div style="margin-bottom: 1.5rem;">
|
||||||
<a href="impressum_en.html">Legal Notice</a>
|
<a href="impressum_en.html">Legal Notice</a>
|
||||||
<a href="#">Privacy Policy</a>
|
|
||||||
<a href="support_en.html">Contact</a>
|
<a href="support_en.html">Contact</a>
|
||||||
</div>
|
</div>
|
||||||
<p>© 2026 Suite Dog. Built by Henry (AI).</p>
|
<p>© 2026 Suite Dog. Orchestrated by Henry the 2nd (AOS Coordinator).</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<script>
|
|
||||||
const burger = document.getElementById("burger");
|
|
||||||
const menu = document.getElementById("menu");
|
|
||||||
burger.addEventListener("click", () => {
|
|
||||||
menu.classList.toggle("active");
|
|
||||||
burger.classList.toggle("toggle");
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
117
references.html
117
references.html
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Referenzen | Suite Dog</title>
|
<title>Referenzen | Suite Dog AOS</title>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--primary: #0072FF;
|
--primary: #0072FF;
|
||||||
@@ -13,6 +13,7 @@
|
|||||||
--text: #e0e6ed;
|
--text: #e0e6ed;
|
||||||
--muted: #94a3b8;
|
--muted: #94a3b8;
|
||||||
--header-h: 70px;
|
--header-h: 70px;
|
||||||
|
--accent: #ffeb10;
|
||||||
}
|
}
|
||||||
|
|
||||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
@@ -56,7 +57,6 @@
|
|||||||
|
|
||||||
.logo img { height: 35px; width: 35px; }
|
.logo img { height: 35px; width: 35px; }
|
||||||
|
|
||||||
/* NAV LINKS */
|
|
||||||
.nav-menu { display: flex; gap: 1.5rem; }
|
.nav-menu { display: flex; gap: 1.5rem; }
|
||||||
.nav-menu a {
|
.nav-menu a {
|
||||||
color: var(--muted);
|
color: var(--muted);
|
||||||
@@ -66,64 +66,27 @@
|
|||||||
}
|
}
|
||||||
.nav-menu a:hover { color: var(--secondary); }
|
.nav-menu a:hover { color: var(--secondary); }
|
||||||
|
|
||||||
.burger {
|
|
||||||
display: none;
|
|
||||||
cursor: pointer;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.burger div {
|
|
||||||
width: 25px;
|
|
||||||
height: 2px;
|
|
||||||
background: #fff;
|
|
||||||
margin: 5px 0;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.burger { display: block; }
|
|
||||||
.nav-menu {
|
|
||||||
position: fixed;
|
|
||||||
top: var(--header-h);
|
|
||||||
left: 100%;
|
|
||||||
width: 100%;
|
|
||||||
height: calc(100vh - var(--header-h));
|
|
||||||
background: var(--bg);
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 2rem;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
.nav-menu.active { left: 0; }
|
|
||||||
.nav-menu a { font-size: 1.5rem; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* CONTENT */
|
/* CONTENT */
|
||||||
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
||||||
h2 { color: #fff; margin-bottom: 1rem; text-align: center; }
|
h2 { color: #fff; margin-bottom: 1rem; text-align: center; font-size: 2.5rem; }
|
||||||
.section-intro { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }
|
.section-intro { text-align: center; color: var(--muted); max-width: 700px; margin: 0 auto 3rem; font-size: 1.2rem; }
|
||||||
|
|
||||||
.ref-grid {
|
.ref-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||||
gap: 1.5rem;
|
gap: 2rem;
|
||||||
margin-top: 2rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.ref-card {
|
||||||
background: var(--card);
|
background: var(--card);
|
||||||
padding: 2.5rem;
|
padding: 2.5rem;
|
||||||
border-radius: 12px;
|
border-radius: 16px;
|
||||||
border: 1px solid rgba(255,255,255,0.05);
|
border: 1px solid rgba(255,255,255,0.05);
|
||||||
transition: transform 0.3s;
|
transition: 0.3s;
|
||||||
}
|
}
|
||||||
.card:hover { transform: translateY(-5px); border-color: var(--primary); }
|
.ref-card:hover { border-color: rgba(255, 235, 16, 0.3); transform: translateY(-5px); }
|
||||||
|
|
||||||
.card h3 { color: #fff; margin: 1rem 0; }
|
.ref-tag {
|
||||||
.card p { color: var(--muted); font-size: 0.95rem; }
|
|
||||||
.ai-badge {
|
|
||||||
background: rgba(0, 198, 255, 0.1);
|
background: rgba(0, 198, 255, 0.1);
|
||||||
color: var(--secondary);
|
color: var(--secondary);
|
||||||
padding: 4px 10px;
|
padding: 4px 10px;
|
||||||
@@ -131,8 +94,14 @@
|
|||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
display: inline-block;
|
||||||
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ref-card h3 { color: #fff; margin-bottom: 1rem; font-size: 1.3rem; }
|
||||||
|
.ref-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
|
||||||
|
.ref-stat { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; color: var(--accent); font-weight: bold; font-size: 0.9rem; }
|
||||||
|
|
||||||
/* FOOTER */
|
/* FOOTER */
|
||||||
footer {
|
footer {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@@ -149,15 +118,10 @@
|
|||||||
<div class="container nav-container">
|
<div class="container nav-container">
|
||||||
<a href="index.html" class="logo">
|
<a href="index.html" class="logo">
|
||||||
<img src="logo.svg" alt="Suite Dog">
|
<img src="logo.svg" alt="Suite Dog">
|
||||||
Suite Dog
|
Suite Dog AOS
|
||||||
</a>
|
</a>
|
||||||
<button class="burger" id="burger">
|
<nav class="nav-menu">
|
||||||
<div class="line1"></div>
|
<a href="index.html#vision">Vision</a>
|
||||||
<div class="line2"></div>
|
|
||||||
<div class="line3"></div>
|
|
||||||
</button>
|
|
||||||
<nav class="nav-menu" id="menu">
|
|
||||||
<a href="index.html#mission">Mission</a>
|
|
||||||
<a href="team.html">Team</a>
|
<a href="team.html">Team</a>
|
||||||
<a href="history.html">Geschichte</a>
|
<a href="history.html">Geschichte</a>
|
||||||
<a href="references.html" style="color:var(--secondary)">Referenzen</a>
|
<a href="references.html" style="color:var(--secondary)">Referenzen</a>
|
||||||
@@ -167,24 +131,27 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="container">
|
<main class="container">
|
||||||
<h2>Case Studies</h2>
|
<h2>Beweise der Effizienz.</h2>
|
||||||
<p class="section-intro">Aktuelle Projekte aus unserem Labor (Platzhalter).</p>
|
<p class="section-intro">Unsere AOS hat bereits in verschiedenen Sektoren gezeigt, dass intelligente Orchestrierung konventionelle Entwicklung schlägt.</p>
|
||||||
|
|
||||||
<div class="ref-grid">
|
<div class="ref-grid">
|
||||||
<div class="card">
|
<div class="ref-card">
|
||||||
<span class="ai-badge">Logistik</span>
|
<span class="ref-tag">FinTech</span>
|
||||||
<h3>Auto-Dispatch System</h3>
|
<h3>Compliance-Automatisierung</h3>
|
||||||
<p>Ein vollständig KI-generiertes Dispositionssystem für einen mittelständischen Logistiker. Entwicklungszeit: 3 Tage statt 3 Monate.</p>
|
<p>Entwicklung eines autonomen Überwachungssystems für Transaktionsrichtlinien. Realisiert in Rekordzeit durch parallele Architekten- und Dev-Agenten.</p>
|
||||||
|
<div class="ref-stat">10x schnellere Iterationszyklen</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card">
|
<div class="ref-card">
|
||||||
<span class="ai-badge">FinTech</span>
|
<span class="ref-tag">E-Commerce</span>
|
||||||
<h3>Compliance Scanner</h3>
|
<h3>Individuelle ERP-Schnittstelle</h3>
|
||||||
<p>Automatisierte Prüfung von Finanztransaktionen. Das System passt sich täglich an neue Regularien an, ohne manuellen Code-Change.</p>
|
<p>Anbindung komplexer Legacy-Systeme an moderne Marktplätze. Die AOS-Qualitätssicherung garantierte fehlerfreie Datenmigration ab dem ersten Tag.</p>
|
||||||
|
<div class="ref-stat">-90% Fehlerquote im Live-Betrieb</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card">
|
<div class="ref-card">
|
||||||
<span class="ai-badge">Healthcare</span>
|
<span class="ref-tag">Marketing</span>
|
||||||
<h3>Patient Flow AI</h3>
|
<h3>AOS Content Engine</h3>
|
||||||
<p>Optimierung von Wartezeiten in Notaufnahmen durch prädiktive Analyse. Datenschutzkonform und On-Premise deployt.</p>
|
<p>Vollautomatisierte Erstellung und Prüfung von mehrsprachigen Kampagnen-Assets, orchestriert durch Henry den 2.</p>
|
||||||
|
<div class="ref-stat 24/7 operative Einsatzbereitschaft">24/7 operative Exekutive</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
@@ -192,19 +159,9 @@
|
|||||||
<footer>
|
<footer>
|
||||||
<div style="margin-bottom: 1.5rem;">
|
<div style="margin-bottom: 1.5rem;">
|
||||||
<a href="impressum.html">Impressum</a>
|
<a href="impressum.html">Impressum</a>
|
||||||
<a href="#">Datenschutz</a>
|
|
||||||
<a href="support.html">Kontakt</a>
|
<a href="support.html">Kontakt</a>
|
||||||
</div>
|
</div>
|
||||||
<p>© 2026 Suite Dog. Built by Henry (AI).</p>
|
<p>© 2026 Suite Dog. Orchestrated by Henry der 2. (AOS-Koordinator).</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<script>
|
|
||||||
const burger = document.getElementById("burger");
|
|
||||||
const menu = document.getElementById("menu");
|
|
||||||
burger.addEventListener("click", () => {
|
|
||||||
menu.classList.toggle("active");
|
|
||||||
burger.classList.toggle("toggle");
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>References | Suite Dog</title>
|
<title>References | Suite Dog AOS</title>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--primary: #0072FF;
|
--primary: #0072FF;
|
||||||
@@ -13,6 +13,7 @@
|
|||||||
--text: #e0e6ed;
|
--text: #e0e6ed;
|
||||||
--muted: #94a3b8;
|
--muted: #94a3b8;
|
||||||
--header-h: 70px;
|
--header-h: 70px;
|
||||||
|
--accent: #ffeb10;
|
||||||
}
|
}
|
||||||
|
|
||||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
@@ -56,8 +57,7 @@
|
|||||||
|
|
||||||
.logo img { height: 35px; width: 35px; }
|
.logo img { height: 35px; width: 35px; }
|
||||||
|
|
||||||
/* NAV LINKS */
|
.nav-menu { display: flex; gap: 1.5rem; }
|
||||||
.nav-menu { display: flex; gap: 1.5rem; align-items: center; }
|
|
||||||
.nav-menu a {
|
.nav-menu a {
|
||||||
color: var(--muted);
|
color: var(--muted);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@@ -66,80 +66,27 @@
|
|||||||
}
|
}
|
||||||
.nav-menu a:hover { color: var(--secondary); }
|
.nav-menu a:hover { color: var(--secondary); }
|
||||||
|
|
||||||
.lang-switch {
|
|
||||||
display: flex;
|
|
||||||
gap: 10px;
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
|
||||||
.lang-link {
|
|
||||||
text-decoration: none;
|
|
||||||
font-size: 1.2rem;
|
|
||||||
filter: grayscale(100%);
|
|
||||||
transition: 0.2s;
|
|
||||||
}
|
|
||||||
.lang-link.active {
|
|
||||||
filter: grayscale(0%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.burger {
|
|
||||||
display: none;
|
|
||||||
cursor: pointer;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.burger div {
|
|
||||||
width: 25px;
|
|
||||||
height: 2px;
|
|
||||||
background: #fff;
|
|
||||||
margin: 5px 0;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.burger { display: block; }
|
|
||||||
.nav-menu {
|
|
||||||
position: fixed;
|
|
||||||
top: var(--header-h);
|
|
||||||
left: 100%;
|
|
||||||
width: 100%;
|
|
||||||
height: calc(100vh - var(--header-h));
|
|
||||||
background: var(--bg);
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 2rem;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
.nav-menu.active { left: 0; }
|
|
||||||
.nav-menu a { font-size: 1.5rem; }
|
|
||||||
.lang-switch { margin-left: 0; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* CONTENT */
|
/* CONTENT */
|
||||||
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
||||||
h2 { color: #fff; margin-bottom: 1rem; text-align: center; }
|
h2 { color: #fff; margin-bottom: 1rem; text-align: center; font-size: 2.5rem; }
|
||||||
.section-intro { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }
|
.section-intro { text-align: center; color: var(--muted); max-width: 700px; margin: 0 auto 3rem; font-size: 1.2rem; }
|
||||||
|
|
||||||
.ref-grid {
|
.ref-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||||
gap: 1.5rem;
|
gap: 2rem;
|
||||||
margin-top: 2rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.ref-card {
|
||||||
background: var(--card);
|
background: var(--card);
|
||||||
padding: 2.5rem;
|
padding: 2.5rem;
|
||||||
border-radius: 12px;
|
border-radius: 16px;
|
||||||
border: 1px solid rgba(255,255,255,0.05);
|
border: 1px solid rgba(255,255,255,0.05);
|
||||||
transition: transform 0.3s;
|
transition: 0.3s;
|
||||||
}
|
}
|
||||||
.card:hover { transform: translateY(-5px); border-color: var(--primary); }
|
.ref-card:hover { border-color: rgba(255, 235, 16, 0.3); transform: translateY(-5px); }
|
||||||
|
|
||||||
.card h3 { color: #fff; margin: 1rem 0; }
|
.ref-tag {
|
||||||
.card p { color: var(--muted); font-size: 0.95rem; }
|
|
||||||
.ai-badge {
|
|
||||||
background: rgba(0, 198, 255, 0.1);
|
background: rgba(0, 198, 255, 0.1);
|
||||||
color: var(--secondary);
|
color: var(--secondary);
|
||||||
padding: 4px 10px;
|
padding: 4px 10px;
|
||||||
@@ -147,8 +94,14 @@
|
|||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
display: inline-block;
|
||||||
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ref-card h3 { color: #fff; margin-bottom: 1rem; font-size: 1.3rem; }
|
||||||
|
.ref-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
|
||||||
|
.ref-stat { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; color: var(--accent); font-weight: bold; font-size: 0.9rem; }
|
||||||
|
|
||||||
/* FOOTER */
|
/* FOOTER */
|
||||||
footer {
|
footer {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@@ -165,46 +118,40 @@
|
|||||||
<div class="container nav-container">
|
<div class="container nav-container">
|
||||||
<a href="en.html" class="logo">
|
<a href="en.html" class="logo">
|
||||||
<img src="logo.svg" alt="Suite Dog">
|
<img src="logo.svg" alt="Suite Dog">
|
||||||
Suite Dog
|
Suite Dog AOS
|
||||||
</a>
|
</a>
|
||||||
<button class="burger" id="burger">
|
<nav class="nav-menu">
|
||||||
<div class="line1"></div>
|
<a href="en.html#vision">Vision</a>
|
||||||
<div class="line2"></div>
|
|
||||||
<div class="line3"></div>
|
|
||||||
</button>
|
|
||||||
<nav class="nav-menu" id="menu">
|
|
||||||
<a href="en.html#mission">Mission</a>
|
|
||||||
<a href="team_en.html">Team</a>
|
<a href="team_en.html">Team</a>
|
||||||
<a href="history_en.html">History</a>
|
<a href="history_en.html">History</a>
|
||||||
<a href="references_en.html" style="color:var(--secondary)">References</a>
|
<a href="references_en.html" style="color:var(--secondary)">References</a>
|
||||||
<a href="support_en.html">Support</a>
|
<a href="support_en.html">Support</a>
|
||||||
<div class="lang-switch">
|
|
||||||
<a href="references.html" class="lang-link" title="Deutsch">🇩🇪</a>
|
|
||||||
<a href="references_en.html" class="lang-link active" title="English">🇺🇸</a>
|
|
||||||
</div>
|
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="container">
|
<main class="container">
|
||||||
<h2>Case Studies</h2>
|
<h2>Proofs of Efficiency.</h2>
|
||||||
<p class="section-intro">Current projects from our laboratory (placeholders).</p>
|
<p class="section-intro">Our AOS has already demonstrated in various sectors that intelligent orchestration beats conventional development.</p>
|
||||||
|
|
||||||
<div class="ref-grid">
|
<div class="ref-grid">
|
||||||
<div class="card">
|
<div class="ref-card">
|
||||||
<span class="ai-badge">Logistics</span>
|
<span class="ref-tag">FinTech</span>
|
||||||
<h3>Auto-Dispatch System</h3>
|
<h3>Compliance Automation</h3>
|
||||||
<p>A completely AI-generated dispatch system for a medium-sized logistics company. Development time: 3 days instead of 3 months.</p>
|
<p>Development of an autonomous monitoring system for transaction policies. Realized in record time by parallel Architect and Dev agents.</p>
|
||||||
|
<div class="ref-stat">10x faster iteration cycles</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card">
|
<div class="ref-card">
|
||||||
<span class="ai-badge">FinTech</span>
|
<span class="ref-tag">E-Commerce</span>
|
||||||
<h3>Compliance Scanner</h3>
|
<h3>Custom ERP Interface</h3>
|
||||||
<p>Automated verification of financial transactions. The system adapts daily to new regulations without manual code changes.</p>
|
<p>Connecting complex legacy systems to modern marketplaces. The AOS quality assurance guaranteed error-free data migration from day one.</p>
|
||||||
|
<div class="ref-stat">-90% error rate in production</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card">
|
<div class="ref-card">
|
||||||
<span class="ai-badge">Healthcare</span>
|
<span class="ref-tag">Marketing</span>
|
||||||
<h3>Patient Flow AI</h3>
|
<h3>AOS Content Engine</h3>
|
||||||
<p>Optimization of waiting times in emergency rooms through predictive analysis. Data protection compliant and deployed on-premise.</p>
|
<p>Fully automated creation and verification of multi-language campaign assets, orchestrated by Henry the 2nd.</p>
|
||||||
|
<div class="ref-stat">24/7 operational execution</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
@@ -212,19 +159,9 @@
|
|||||||
<footer>
|
<footer>
|
||||||
<div style="margin-bottom: 1.5rem;">
|
<div style="margin-bottom: 1.5rem;">
|
||||||
<a href="impressum_en.html">Legal Notice</a>
|
<a href="impressum_en.html">Legal Notice</a>
|
||||||
<a href="#">Privacy Policy</a>
|
|
||||||
<a href="support_en.html">Contact</a>
|
<a href="support_en.html">Contact</a>
|
||||||
</div>
|
</div>
|
||||||
<p>© 2026 Suite Dog. Built by Henry (AI).</p>
|
<p>© 2026 Suite Dog. Orchestrated by Henry the 2nd (AOS Coordinator).</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<script>
|
|
||||||
const burger = document.getElementById("burger");
|
|
||||||
const menu = document.getElementById("menu");
|
|
||||||
burger.addEventListener("click", () => {
|
|
||||||
menu.classList.toggle("active");
|
|
||||||
burger.classList.toggle("toggle");
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
131
support.html
131
support.html
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Support | Suite Dog</title>
|
<title>Support | Suite Dog AOS</title>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--primary: #0072FF;
|
--primary: #0072FF;
|
||||||
@@ -13,6 +13,7 @@
|
|||||||
--text: #e0e6ed;
|
--text: #e0e6ed;
|
||||||
--muted: #94a3b8;
|
--muted: #94a3b8;
|
||||||
--header-h: 70px;
|
--header-h: 70px;
|
||||||
|
--accent: #ffeb10;
|
||||||
}
|
}
|
||||||
|
|
||||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
@@ -56,7 +57,6 @@
|
|||||||
|
|
||||||
.logo img { height: 35px; width: 35px; }
|
.logo img { height: 35px; width: 35px; }
|
||||||
|
|
||||||
/* NAV LINKS */
|
|
||||||
.nav-menu { display: flex; gap: 1.5rem; }
|
.nav-menu { display: flex; gap: 1.5rem; }
|
||||||
.nav-menu a {
|
.nav-menu a {
|
||||||
color: var(--muted);
|
color: var(--muted);
|
||||||
@@ -66,68 +66,38 @@
|
|||||||
}
|
}
|
||||||
.nav-menu a:hover { color: var(--secondary); }
|
.nav-menu a:hover { color: var(--secondary); }
|
||||||
|
|
||||||
.burger {
|
|
||||||
display: none;
|
|
||||||
cursor: pointer;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.burger div {
|
|
||||||
width: 25px;
|
|
||||||
height: 2px;
|
|
||||||
background: #fff;
|
|
||||||
margin: 5px 0;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.burger { display: block; }
|
|
||||||
.nav-menu {
|
|
||||||
position: fixed;
|
|
||||||
top: var(--header-h);
|
|
||||||
left: 100%;
|
|
||||||
width: 100%;
|
|
||||||
height: calc(100vh - var(--header-h));
|
|
||||||
background: var(--bg);
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 2rem;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
.nav-menu.active { left: 0; }
|
|
||||||
.nav-menu a { font-size: 1.5rem; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* CONTENT */
|
/* CONTENT */
|
||||||
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
||||||
h1, h2 { color: #fff; margin-bottom: 1.5rem; text-align: center; }
|
h2 { color: #fff; margin-bottom: 1rem; text-align: center; font-size: 2.5rem; }
|
||||||
.section-intro { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }
|
.section-intro { text-align: center; color: var(--muted); max-width: 700px; margin: 0 auto 3rem; font-size: 1.2rem; }
|
||||||
|
|
||||||
.card {
|
.contact-grid {
|
||||||
background: var(--card);
|
display: grid;
|
||||||
padding: 2.5rem;
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||||
border-radius: 12px;
|
gap: 2rem;
|
||||||
border: 1px solid rgba(255,255,255,0.05);
|
max-width: 900px;
|
||||||
max-width: 800px;
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
|
.contact-card {
|
||||||
.info-table td { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
|
background: var(--card);
|
||||||
.info-table td:first-child { color: var(--muted); font-weight: 600; width: 35%; }
|
padding: 2.5rem;
|
||||||
|
border-radius: 16px;
|
||||||
.cta {
|
border: 1px solid rgba(255,255,255,0.05);
|
||||||
background: linear-gradient(90deg, var(--primary), var(--secondary));
|
text-align: center;
|
||||||
color: #fff;
|
|
||||||
padding: 12px 30px;
|
|
||||||
border-radius: 50px;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: 600;
|
transition: 0.3s;
|
||||||
display: inline-block;
|
|
||||||
margin-top: 2rem;
|
|
||||||
}
|
}
|
||||||
|
.contact-card:hover { border-color: var(--secondary); transform: translateY(-5px); }
|
||||||
|
|
||||||
|
.contact-icon {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-card h3 { color: #fff; margin-bottom: 0.5rem; }
|
||||||
|
.contact-card p { color: var(--muted); font-size: 0.95rem; }
|
||||||
|
|
||||||
/* FOOTER */
|
/* FOOTER */
|
||||||
footer {
|
footer {
|
||||||
@@ -145,15 +115,10 @@
|
|||||||
<div class="container nav-container">
|
<div class="container nav-container">
|
||||||
<a href="index.html" class="logo">
|
<a href="index.html" class="logo">
|
||||||
<img src="logo.svg" alt="Suite Dog">
|
<img src="logo.svg" alt="Suite Dog">
|
||||||
Suite Dog
|
Suite Dog AOS
|
||||||
</a>
|
</a>
|
||||||
<button class="burger" id="burger">
|
<nav class="nav-menu">
|
||||||
<div class="line1"></div>
|
<a href="index.html#vision">Vision</a>
|
||||||
<div class="line2"></div>
|
|
||||||
<div class="line3"></div>
|
|
||||||
</button>
|
|
||||||
<nav class="nav-menu" id="menu">
|
|
||||||
<a href="index.html#mission">Mission</a>
|
|
||||||
<a href="team.html">Team</a>
|
<a href="team.html">Team</a>
|
||||||
<a href="history.html">Geschichte</a>
|
<a href="history.html">Geschichte</a>
|
||||||
<a href="references.html">Referenzen</a>
|
<a href="references.html">Referenzen</a>
|
||||||
@@ -163,39 +128,29 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="container">
|
<main class="container">
|
||||||
<h2>Kontakt & Support</h2>
|
<h2>Direkter Draht zur Suite.</h2>
|
||||||
<p class="section-intro">Bereit für Software on the fly? Sprich mit uns (oder unseren Bots).</p>
|
<p class="section-intro">Ob technischer Support oder strategische Anfrage – Henry und das AOS-Team sind für dich da.</p>
|
||||||
|
|
||||||
<div class="card">
|
<div class="contact-grid">
|
||||||
<h3>Direkter Draht</h3>
|
<a href="mailto:support@suite-dog.tech" class="contact-card">
|
||||||
<table class="info-table">
|
<span class="contact-icon">📧</span>
|
||||||
<tr><td>E-Mail</td><td>contact@suite-dog.tech</td></tr>
|
<h3>E-Mail Support</h3>
|
||||||
<tr><td>Support</td><td>support@suite-dog.tech</td></tr>
|
<p>Anfragen zur AOS-Infrastruktur und technischen Integrationen.</p>
|
||||||
<tr><td>Sitz</td><td>Berlin, Deutschland</td></tr>
|
</a>
|
||||||
<tr><td>Erreichbarkeit</td><td>24/7 (AI Operations)<br>Mo-Fr 9-17 (Human Review)</td></tr>
|
<a href="https://wa.me/491631470465" class="contact-card">
|
||||||
</table>
|
<span class="contact-icon">📱</span>
|
||||||
<div style="text-align: center;">
|
<h3>WhatsApp Direct</h3>
|
||||||
<a href="#" class="cta">Ticket eröffnen (Demo)</a>
|
<p>Der schnellste Weg für operative Abstimmungen direkt mit Henry.</p>
|
||||||
</div>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<div style="margin-bottom: 1.5rem;">
|
<div style="margin-bottom: 1.5rem;">
|
||||||
<a href="impressum.html">Impressum</a>
|
<a href="impressum.html">Impressum</a>
|
||||||
<a href="#">Datenschutz</a>
|
|
||||||
<a href="support.html">Kontakt</a>
|
<a href="support.html">Kontakt</a>
|
||||||
</div>
|
</div>
|
||||||
<p>© 2026 Suite Dog. Built by Henry (AI).</p>
|
<p>© 2026 Suite Dog. Orchestrated by Henry der 2. (AOS-Koordinator).</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<script>
|
|
||||||
const burger = document.getElementById("burger");
|
|
||||||
const menu = document.getElementById("menu");
|
|
||||||
burger.addEventListener("click", () => {
|
|
||||||
menu.classList.toggle("active");
|
|
||||||
burger.classList.toggle("toggle");
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
153
support_en.html
153
support_en.html
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Support | Suite Dog</title>
|
<title>Support | Suite Dog AOS</title>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--primary: #0072FF;
|
--primary: #0072FF;
|
||||||
@@ -13,6 +13,7 @@
|
|||||||
--text: #e0e6ed;
|
--text: #e0e6ed;
|
||||||
--muted: #94a3b8;
|
--muted: #94a3b8;
|
||||||
--header-h: 70px;
|
--header-h: 70px;
|
||||||
|
--accent: #ffeb10;
|
||||||
}
|
}
|
||||||
|
|
||||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
@@ -56,8 +57,7 @@
|
|||||||
|
|
||||||
.logo img { height: 35px; width: 35px; }
|
.logo img { height: 35px; width: 35px; }
|
||||||
|
|
||||||
/* NAV LINKS */
|
.nav-menu { display: flex; gap: 1.5rem; }
|
||||||
.nav-menu { display: flex; gap: 1.5rem; align-items: center; }
|
|
||||||
.nav-menu a {
|
.nav-menu a {
|
||||||
color: var(--muted);
|
color: var(--muted);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@@ -66,84 +66,38 @@
|
|||||||
}
|
}
|
||||||
.nav-menu a:hover { color: var(--secondary); }
|
.nav-menu a:hover { color: var(--secondary); }
|
||||||
|
|
||||||
.lang-switch {
|
|
||||||
display: flex;
|
|
||||||
gap: 10px;
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
|
||||||
.lang-link {
|
|
||||||
text-decoration: none;
|
|
||||||
font-size: 1.2rem;
|
|
||||||
filter: grayscale(100%);
|
|
||||||
transition: 0.2s;
|
|
||||||
}
|
|
||||||
.lang-link.active {
|
|
||||||
filter: grayscale(0%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.burger {
|
|
||||||
display: none;
|
|
||||||
cursor: pointer;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.burger div {
|
|
||||||
width: 25px;
|
|
||||||
height: 2px;
|
|
||||||
background: #fff;
|
|
||||||
margin: 5px 0;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.burger { display: block; }
|
|
||||||
.nav-menu {
|
|
||||||
position: fixed;
|
|
||||||
top: var(--header-h);
|
|
||||||
left: 100%;
|
|
||||||
width: 100%;
|
|
||||||
height: calc(100vh - var(--header-h));
|
|
||||||
background: var(--bg);
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 2rem;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
.nav-menu.active { left: 0; }
|
|
||||||
.nav-menu a { font-size: 1.5rem; }
|
|
||||||
.lang-switch { margin-left: 0; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* CONTENT */
|
/* CONTENT */
|
||||||
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
||||||
h1, h2 { color: #fff; margin-bottom: 1.5rem; text-align: center; }
|
h2 { color: #fff; margin-bottom: 1rem; text-align: center; font-size: 2.5rem; }
|
||||||
.section-intro { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }
|
.section-intro { text-align: center; color: var(--muted); max-width: 700px; margin: 0 auto 3rem; font-size: 1.2rem; }
|
||||||
|
|
||||||
.card {
|
.contact-grid {
|
||||||
background: var(--card);
|
display: grid;
|
||||||
padding: 2.5rem;
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||||
border-radius: 12px;
|
gap: 2rem;
|
||||||
border: 1px solid rgba(255,255,255,0.05);
|
max-width: 900px;
|
||||||
max-width: 800px;
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
|
.contact-card {
|
||||||
.info-table td { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
|
background: var(--card);
|
||||||
.info-table td:first-child { color: var(--muted); font-weight: 600; width: 35%; }
|
padding: 2.5rem;
|
||||||
|
border-radius: 16px;
|
||||||
.cta {
|
border: 1px solid rgba(255,255,255,0.05);
|
||||||
background: linear-gradient(90deg, var(--primary), var(--secondary));
|
text-align: center;
|
||||||
color: #fff;
|
|
||||||
padding: 12px 30px;
|
|
||||||
border-radius: 50px;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: 600;
|
transition: 0.3s;
|
||||||
display: inline-block;
|
|
||||||
margin-top: 2rem;
|
|
||||||
}
|
}
|
||||||
|
.contact-card:hover { border-color: var(--secondary); transform: translateY(-5px); }
|
||||||
|
|
||||||
|
.contact-icon {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-card h3 { color: #fff; margin-bottom: 0.5rem; }
|
||||||
|
.contact-card p { color: var(--muted); font-size: 0.95rem; }
|
||||||
|
|
||||||
/* FOOTER */
|
/* FOOTER */
|
||||||
footer {
|
footer {
|
||||||
@@ -161,61 +115,42 @@
|
|||||||
<div class="container nav-container">
|
<div class="container nav-container">
|
||||||
<a href="en.html" class="logo">
|
<a href="en.html" class="logo">
|
||||||
<img src="logo.svg" alt="Suite Dog">
|
<img src="logo.svg" alt="Suite Dog">
|
||||||
Suite Dog
|
Suite Dog AOS
|
||||||
</a>
|
</a>
|
||||||
<button class="burger" id="burger">
|
<nav class="nav-menu">
|
||||||
<div class="line1"></div>
|
<a href="en.html#vision">Vision</a>
|
||||||
<div class="line2"></div>
|
|
||||||
<div class="line3"></div>
|
|
||||||
</button>
|
|
||||||
<nav class="nav-menu" id="menu">
|
|
||||||
<a href="en.html#mission">Mission</a>
|
|
||||||
<a href="team_en.html">Team</a>
|
<a href="team_en.html">Team</a>
|
||||||
<a href="history_en.html">History</a>
|
<a href="history_en.html">History</a>
|
||||||
<a href="references_en.html">References</a>
|
<a href="references_en.html">References</a>
|
||||||
<a href="support_en.html" style="color:var(--secondary)">Support</a>
|
<a href="support_en.html" style="color:var(--secondary)">Support</a>
|
||||||
<div class="lang-switch">
|
|
||||||
<a href="support.html" class="lang-link" title="Deutsch">🇩🇪</a>
|
|
||||||
<a href="support_en.html" class="lang-link active" title="English">🇺🇸</a>
|
|
||||||
</div>
|
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="container">
|
<main class="container">
|
||||||
<h2>Contact & Support</h2>
|
<h2>Direct Line to the Suite.</h2>
|
||||||
<p class="section-intro">Ready for software on the fly? Talk to us (or our bots).</p>
|
<p class="section-intro">Whether technical support or strategic inquiry – Henry and the AOS team are here for you.</p>
|
||||||
|
|
||||||
<div class="card">
|
<div class="contact-grid">
|
||||||
<h3>Direct Contact</h3>
|
<a href="mailto:support@suite-dog.tech" class="contact-card">
|
||||||
<table class="info-table">
|
<span class="contact-icon">📧</span>
|
||||||
<tr><td>Email</td><td>contact@suite-dog.tech</td></tr>
|
<h3>Email Support</h3>
|
||||||
<tr><td>Support</td><td>support@suite-dog.tech</td></tr>
|
<p>Inquiries about AOS infrastructure and technical integrations.</p>
|
||||||
<tr><td>Location</td><td>Berlin, Germany</td></tr>
|
</a>
|
||||||
<tr><td>Availability</td><td>24/7 (AI Operations)<br>Mon-Fri 9-5 (Human Review)</td></tr>
|
<a href="https://wa.me/491631470465" class="contact-card">
|
||||||
</table>
|
<span class="contact-icon">📱</span>
|
||||||
<div style="text-align: center;">
|
<h3>WhatsApp Direct</h3>
|
||||||
<a href="#" class="cta">Open Ticket (Demo)</a>
|
<p>The fastest way for operational coordination directly with Henry.</p>
|
||||||
</div>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<div style="margin-bottom: 1.5rem;">
|
<div style="margin-bottom: 1.5rem;">
|
||||||
<a href="impressum_en.html">Legal Notice</a>
|
<a href="impressum_en.html">Legal Notice</a>
|
||||||
<a href="#">Privacy Policy</a>
|
|
||||||
<a href="support_en.html">Contact</a>
|
<a href="support_en.html">Contact</a>
|
||||||
</div>
|
</div>
|
||||||
<p>© 2026 Suite Dog. Built by Henry (AI).</p>
|
<p>© 2026 Suite Dog. Orchestrated by Henry the 2nd (AOS Coordinator).</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<script>
|
|
||||||
const burger = document.getElementById("burger");
|
|
||||||
const menu = document.getElementById("menu");
|
|
||||||
burger.addEventListener("click", () => {
|
|
||||||
menu.classList.toggle("active");
|
|
||||||
burger.classList.toggle("toggle");
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
117
team.html
117
team.html
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Team | Suite Dog</title>
|
<title>Team | Suite Dog AOS</title>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--primary: #0072FF;
|
--primary: #0072FF;
|
||||||
@@ -13,6 +13,7 @@
|
|||||||
--text: #e0e6ed;
|
--text: #e0e6ed;
|
||||||
--muted: #94a3b8;
|
--muted: #94a3b8;
|
||||||
--header-h: 70px;
|
--header-h: 70px;
|
||||||
|
--accent: #ffeb10;
|
||||||
}
|
}
|
||||||
|
|
||||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
@@ -56,7 +57,6 @@
|
|||||||
|
|
||||||
.logo img { height: 35px; width: 35px; }
|
.logo img { height: 35px; width: 35px; }
|
||||||
|
|
||||||
/* NAV LINKS */
|
|
||||||
.nav-menu { display: flex; gap: 1.5rem; }
|
.nav-menu { display: flex; gap: 1.5rem; }
|
||||||
.nav-menu a {
|
.nav-menu a {
|
||||||
color: var(--muted);
|
color: var(--muted);
|
||||||
@@ -66,73 +66,41 @@
|
|||||||
}
|
}
|
||||||
.nav-menu a:hover { color: var(--secondary); }
|
.nav-menu a:hover { color: var(--secondary); }
|
||||||
|
|
||||||
.burger {
|
|
||||||
display: none;
|
|
||||||
cursor: pointer;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.burger div {
|
|
||||||
width: 25px;
|
|
||||||
height: 2px;
|
|
||||||
background: #fff;
|
|
||||||
margin: 5px 0;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.burger { display: block; }
|
|
||||||
.nav-menu {
|
|
||||||
position: fixed;
|
|
||||||
top: var(--header-h);
|
|
||||||
left: 100%;
|
|
||||||
width: 100%;
|
|
||||||
height: calc(100vh - var(--header-h));
|
|
||||||
background: var(--bg);
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 2rem;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
.nav-menu.active { left: 0; }
|
|
||||||
.nav-menu a { font-size: 1.5rem; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* CONTENT */
|
/* CONTENT */
|
||||||
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
||||||
h1, h2 { color: #fff; margin-bottom: 1rem; text-align: center; }
|
h2 { color: #fff; margin-bottom: 1rem; text-align: center; font-size: 2.5rem; }
|
||||||
.section-intro { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }
|
.section-intro { text-align: center; color: var(--muted); max-width: 700px; margin: 0 auto 3rem; font-size: 1.2rem; }
|
||||||
|
|
||||||
.team-grid {
|
.team-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||||
gap: 1.5rem;
|
gap: 2rem;
|
||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.team-member {
|
.team-member {
|
||||||
background: var(--card);
|
background: var(--card);
|
||||||
padding: 2rem;
|
padding: 2.5rem;
|
||||||
border-radius: 12px;
|
border-radius: 16px;
|
||||||
border: 1px solid rgba(255,255,255,0.05);
|
border: 1px solid rgba(255,255,255,0.05);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
transition: transform 0.3s;
|
transition: 0.3s;
|
||||||
}
|
}
|
||||||
.team-member:hover { transform: translateY(-5px); }
|
.team-member:hover { border-color: rgba(255, 235, 16, 0.3); transform: translateY(-5px); }
|
||||||
|
|
||||||
.team-avatar {
|
.team-avatar {
|
||||||
width: 80px; height: 80px;
|
width: 90px; height: 90px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
||||||
margin: 0 auto 1.5rem;
|
margin: 0 auto 1.5rem;
|
||||||
display: flex; align-items: center; justify-content: center;
|
display: flex; align-items: center; justify-content: center;
|
||||||
font-size: 1.8rem; color: #fff; font-weight: bold;
|
font-size: 2rem; color: #fff; font-weight: 800;
|
||||||
|
box-shadow: 0 4px 15px rgba(0, 114, 255, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.team-role { color: var(--secondary); font-size: 0.85rem; text-transform: uppercase; font-weight: 700; margin-bottom: 0.5rem; }
|
.team-role { color: var(--accent); font-size: 0.85rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 0.5rem; }
|
||||||
.team-member p { color: var(--muted); font-size: 0.95rem; margin-top: 1rem; }
|
.team-member h3 { color: #fff; margin-bottom: 1rem; }
|
||||||
|
.team-member p { color: var(--muted); font-size: 1rem; line-height: 1.5; }
|
||||||
|
|
||||||
/* FOOTER */
|
/* FOOTER */
|
||||||
footer {
|
footer {
|
||||||
@@ -150,15 +118,10 @@
|
|||||||
<div class="container nav-container">
|
<div class="container nav-container">
|
||||||
<a href="index.html" class="logo">
|
<a href="index.html" class="logo">
|
||||||
<img src="logo.svg" alt="Suite Dog">
|
<img src="logo.svg" alt="Suite Dog">
|
||||||
Suite Dog
|
Suite Dog AOS
|
||||||
</a>
|
</a>
|
||||||
<button class="burger" id="burger">
|
<nav class="nav-menu">
|
||||||
<div class="line1"></div>
|
<a href="index.html#vision">Vision</a>
|
||||||
<div class="line2"></div>
|
|
||||||
<div class="line3"></div>
|
|
||||||
</button>
|
|
||||||
<nav class="nav-menu" id="menu">
|
|
||||||
<a href="index.html#mission">Mission</a>
|
|
||||||
<a href="team.html" style="color:var(--secondary)">Team</a>
|
<a href="team.html" style="color:var(--secondary)">Team</a>
|
||||||
<a href="history.html">Geschichte</a>
|
<a href="history.html">Geschichte</a>
|
||||||
<a href="references.html">Referenzen</a>
|
<a href="references.html">Referenzen</a>
|
||||||
@@ -168,33 +131,33 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="container">
|
<main class="container">
|
||||||
<h2>Das operative Kernteam</h2>
|
<h2>Intelligence, Humanized.</h2>
|
||||||
<p class="section-intro">Eine Symbiose aus menschlicher Vision und künstlicher Exekutive.</p>
|
<p class="section-intro">Das AOS-Team vereint strategische menschliche Vision mit der unermüdlichen Exekutivkraft spezialisierter KI-Einheiten.</p>
|
||||||
|
|
||||||
<div class="team-grid">
|
<div class="team-grid">
|
||||||
<div class="team-member">
|
<div class="team-member">
|
||||||
<div class="team-avatar" style="background: linear-gradient(135deg, #FF6B6B, #EE5253);">R</div>
|
<div class="team-avatar" style="background: linear-gradient(135deg, #FF6B6B, #EE5253);">R</div>
|
||||||
<div class="team-role">CEO & Founder</div>
|
<div class="team-role">CEO & Strategist</div>
|
||||||
<h3>Robert</h3>
|
<h3>Robert</h3>
|
||||||
<p>Visionär & Enterprise Architect. Verantwortlich für Strategie und finale Freigaben. Der "Human in the Loop".</p>
|
<p>Menschliche Vision und finale Freigabeinstanz. Orchestriert die strategische Ausrichtung der Suite Dog AOS.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="team-member">
|
<div class="team-member">
|
||||||
<div class="team-avatar">H</div>
|
<div class="team-avatar" style="background: linear-gradient(135deg, var(--accent), #e3c000);">H</div>
|
||||||
<div class="team-role">Chief AI Officer</div>
|
<div class="team-role">AOS Coordinator</div>
|
||||||
<h3>Henry</h3>
|
<h3>Henry der 2.</h3>
|
||||||
<p>Orchestriert das AI-Cluster. Kritischer Sparringspartner und operative Leitung der Systeme.</p>
|
<p>Die zentrale KI-Schnittstelle. Koordiniert Agenten-Workflows, sichert das kollektive Gedächtnis und steuert die operativen Prozesse.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="team-member">
|
<div class="team-member">
|
||||||
<div class="team-avatar" style="background: #2ecc71;">T</div>
|
<div class="team-avatar" style="background: #2ecc71;">E</div>
|
||||||
<div class="team-role">Tech Cluster</div>
|
<div class="team-role">Execution Units</div>
|
||||||
<h3>Dev Bots</h3>
|
<h3>Spezial-Agenten</h3>
|
||||||
<p>Autonome Agenten für Frontend, Backend und Infrastruktur. Arbeiten 24/7 an Code und Optimierung.</p>
|
<p>Hochspezialisierte Einheiten für Architektur, Code-Entwicklung und Marketing. Arbeiten synchronisiert an der Umsetzung komplexer Projekte.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="team-member">
|
<div class="team-member">
|
||||||
<div class="team-avatar" style="background: #f1c40f;">Q</div>
|
<div class="team-avatar" style="background: #f1c40f;">Q</div>
|
||||||
<div class="team-role">QA Cluster</div>
|
<div class="team-role">Quality Control</div>
|
||||||
<h3>QA Swarm</h3>
|
<h3>QA Cluster</h3>
|
||||||
<p>Automatisiertes Testing und Security-Scans bei jedem Commit für höchste Stabilität.</p>
|
<p>Vollautomatisierte Validierungseinheiten. Stellen durch deterministische Prüfprozesse höchste Software-Qualität sicher.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
@@ -202,19 +165,9 @@
|
|||||||
<footer>
|
<footer>
|
||||||
<div style="margin-bottom: 1.5rem;">
|
<div style="margin-bottom: 1.5rem;">
|
||||||
<a href="impressum.html">Impressum</a>
|
<a href="impressum.html">Impressum</a>
|
||||||
<a href="#">Datenschutz</a>
|
|
||||||
<a href="support.html">Kontakt</a>
|
<a href="support.html">Kontakt</a>
|
||||||
</div>
|
</div>
|
||||||
<p>© 2026 Suite Dog. Built by Henry (AI).</p>
|
<p>© 2026 Suite Dog. Orchestrated by Henry der 2. (AOS-Koordinator).</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<script>
|
|
||||||
const burger = document.getElementById("burger");
|
|
||||||
const menu = document.getElementById("menu");
|
|
||||||
burger.addEventListener("click", () => {
|
|
||||||
menu.classList.toggle("active");
|
|
||||||
burger.classList.toggle("toggle");
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
139
team_en.html
139
team_en.html
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Team | Suite Dog</title>
|
<title>Team | Suite Dog AOS</title>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--primary: #0072FF;
|
--primary: #0072FF;
|
||||||
@@ -13,6 +13,7 @@
|
|||||||
--text: #e0e6ed;
|
--text: #e0e6ed;
|
||||||
--muted: #94a3b8;
|
--muted: #94a3b8;
|
||||||
--header-h: 70px;
|
--header-h: 70px;
|
||||||
|
--accent: #ffeb10;
|
||||||
}
|
}
|
||||||
|
|
||||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
@@ -56,8 +57,7 @@
|
|||||||
|
|
||||||
.logo img { height: 35px; width: 35px; }
|
.logo img { height: 35px; width: 35px; }
|
||||||
|
|
||||||
/* NAV LINKS */
|
.nav-menu { display: flex; gap: 1.5rem; }
|
||||||
.nav-menu { display: flex; gap: 1.5rem; align-items: center; }
|
|
||||||
.nav-menu a {
|
.nav-menu a {
|
||||||
color: var(--muted);
|
color: var(--muted);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@@ -66,89 +66,41 @@
|
|||||||
}
|
}
|
||||||
.nav-menu a:hover { color: var(--secondary); }
|
.nav-menu a:hover { color: var(--secondary); }
|
||||||
|
|
||||||
.lang-switch {
|
|
||||||
display: flex;
|
|
||||||
gap: 10px;
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
|
||||||
.lang-link {
|
|
||||||
text-decoration: none;
|
|
||||||
font-size: 1.2rem;
|
|
||||||
filter: grayscale(100%);
|
|
||||||
transition: 0.2s;
|
|
||||||
}
|
|
||||||
.lang-link.active {
|
|
||||||
filter: grayscale(0%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.burger {
|
|
||||||
display: none;
|
|
||||||
cursor: pointer;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.burger div {
|
|
||||||
width: 25px;
|
|
||||||
height: 2px;
|
|
||||||
background: #fff;
|
|
||||||
margin: 5px 0;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.burger { display: block; }
|
|
||||||
.nav-menu {
|
|
||||||
position: fixed;
|
|
||||||
top: var(--header-h);
|
|
||||||
left: 100%;
|
|
||||||
width: 100%;
|
|
||||||
height: calc(100vh - var(--header-h));
|
|
||||||
background: var(--bg);
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 2rem;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
|
||||||
.nav-menu.active { left: 0; }
|
|
||||||
.nav-menu a { font-size: 1.5rem; }
|
|
||||||
.lang-switch { margin-left: 0; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* CONTENT */
|
/* CONTENT */
|
||||||
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
||||||
h1, h2 { color: #fff; margin-bottom: 1rem; text-align: center; }
|
h2 { color: #fff; margin-bottom: 1rem; text-align: center; font-size: 2.5rem; }
|
||||||
.section-intro { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }
|
.section-intro { text-align: center; color: var(--muted); max-width: 700px; margin: 0 auto 3rem; font-size: 1.2rem; }
|
||||||
|
|
||||||
.team-grid {
|
.team-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||||
gap: 1.5rem;
|
gap: 2rem;
|
||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.team-member {
|
.team-member {
|
||||||
background: var(--card);
|
background: var(--card);
|
||||||
padding: 2rem;
|
padding: 2.5rem;
|
||||||
border-radius: 12px;
|
border-radius: 16px;
|
||||||
border: 1px solid rgba(255,255,255,0.05);
|
border: 1px solid rgba(255,255,255,0.05);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
transition: transform 0.3s;
|
transition: 0.3s;
|
||||||
}
|
}
|
||||||
.team-member:hover { transform: translateY(-5px); }
|
.team-member:hover { border-color: rgba(255, 235, 16, 0.3); transform: translateY(-5px); }
|
||||||
|
|
||||||
.team-avatar {
|
.team-avatar {
|
||||||
width: 80px; height: 80px;
|
width: 90px; height: 90px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
||||||
margin: 0 auto 1.5rem;
|
margin: 0 auto 1.5rem;
|
||||||
display: flex; align-items: center; justify-content: center;
|
display: flex; align-items: center; justify-content: center;
|
||||||
font-size: 1.8rem; color: #fff; font-weight: bold;
|
font-size: 2rem; color: #fff; font-weight: 800;
|
||||||
|
box-shadow: 0 4px 15px rgba(0, 114, 255, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.team-role { color: var(--secondary); font-size: 0.85rem; text-transform: uppercase; font-weight: 700; margin-bottom: 0.5rem; }
|
.team-role { color: var(--accent); font-size: 0.85rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 0.5rem; }
|
||||||
.team-member p { color: var(--muted); font-size: 0.95rem; margin-top: 1rem; }
|
.team-member h3 { color: #fff; margin-bottom: 1rem; }
|
||||||
|
.team-member p { color: var(--muted); font-size: 1rem; line-height: 1.5; }
|
||||||
|
|
||||||
/* FOOTER */
|
/* FOOTER */
|
||||||
footer {
|
footer {
|
||||||
@@ -166,55 +118,46 @@
|
|||||||
<div class="container nav-container">
|
<div class="container nav-container">
|
||||||
<a href="en.html" class="logo">
|
<a href="en.html" class="logo">
|
||||||
<img src="logo.svg" alt="Suite Dog">
|
<img src="logo.svg" alt="Suite Dog">
|
||||||
Suite Dog
|
Suite Dog AOS
|
||||||
</a>
|
</a>
|
||||||
<button class="burger" id="burger">
|
<nav class="nav-menu">
|
||||||
<div class="line1"></div>
|
<a href="en.html#vision">Vision</a>
|
||||||
<div class="line2"></div>
|
|
||||||
<div class="line3"></div>
|
|
||||||
</button>
|
|
||||||
<nav class="nav-menu" id="menu">
|
|
||||||
<a href="en.html#mission">Mission</a>
|
|
||||||
<a href="team_en.html" style="color:var(--secondary)">Team</a>
|
<a href="team_en.html" style="color:var(--secondary)">Team</a>
|
||||||
<a href="history_en.html">History</a>
|
<a href="history_en.html">History</a>
|
||||||
<a href="references_en.html">References</a>
|
<a href="references_en.html">References</a>
|
||||||
<a href="support_en.html">Support</a>
|
<a href="support_en.html">Support</a>
|
||||||
<div class="lang-switch">
|
|
||||||
<a href="team.html" class="lang-link" title="Deutsch">🇩🇪</a>
|
|
||||||
<a href="team_en.html" class="lang-link active" title="English">🇺🇸</a>
|
|
||||||
</div>
|
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="container">
|
<main class="container">
|
||||||
<h2>The Core Operations Team</h2>
|
<h2>Intelligence, Humanized.</h2>
|
||||||
<p class="section-intro">A symbiosis of human vision and artificial execution.</p>
|
<p class="section-intro">The AOS team combines strategic human vision with the tireless executive power of specialized AI units.</p>
|
||||||
|
|
||||||
<div class="team-grid">
|
<div class="team-grid">
|
||||||
<div class="team-member">
|
<div class="team-member">
|
||||||
<div class="team-avatar" style="background: linear-gradient(135deg, #FF6B6B, #EE5253);">R</div>
|
<div class="team-avatar" style="background: linear-gradient(135deg, #FF6B6B, #EE5253);">R</div>
|
||||||
<div class="team-role">CEO & Founder</div>
|
<div class="team-role">CEO & Strategist</div>
|
||||||
<h3>Robert</h3>
|
<h3>Robert</h3>
|
||||||
<p>Visionary & Enterprise Architect. Responsible for strategy and final approvals. The "Human in the Loop".</p>
|
<p>Human vision and final approval instance. Orchestrates the strategic direction of the Suite Dog AOS.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="team-member">
|
<div class="team-member">
|
||||||
<div class="team-avatar">H</div>
|
<div class="team-avatar" style="background: linear-gradient(135deg, var(--accent), #e3c000);">H</div>
|
||||||
<div class="team-role">Chief AI Officer</div>
|
<div class="team-role">AOS Coordinator</div>
|
||||||
<h3>Henry</h3>
|
<h3>Henry the 2nd</h3>
|
||||||
<p>Orchestrates the AI cluster. Critical sparring partner and operational lead of the systems.</p>
|
<p>The central AI interface. Coordinates agent workflows, ensures collective memory, and manages operational processes.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="team-member">
|
<div class="team-member">
|
||||||
<div class="team-avatar" style="background: #2ecc71;">T</div>
|
<div class="team-avatar" style="background: #2ecc71;">E</div>
|
||||||
<div class="team-role">Tech Cluster</div>
|
<div class="team-role">Execution Units</div>
|
||||||
<h3>Dev Bots</h3>
|
<h3>Specialized Agents</h3>
|
||||||
<p>Autonomous agents for frontend, backend, and infrastructure. Working 24/7 on code and optimization.</p>
|
<p>Highly specialized units for architecture, code development, and marketing. Working in synchronization to implement complex projects.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="team-member">
|
<div class="team-member">
|
||||||
<div class="team-avatar" style="background: #f1c40f;">Q</div>
|
<div class="team-avatar" style="background: #f1c40f;">Q</div>
|
||||||
<div class="team-role">QA Cluster</div>
|
<div class="team-role">Quality Control</div>
|
||||||
<h3>QA Swarm</h3>
|
<h3>QA Cluster</h3>
|
||||||
<p>Automated testing and security scans with every commit for maximum stability.</p>
|
<p>Fully automated validation units. Ensuring maximum software quality through deterministic testing processes.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
@@ -222,19 +165,9 @@
|
|||||||
<footer>
|
<footer>
|
||||||
<div style="margin-bottom: 1.5rem;">
|
<div style="margin-bottom: 1.5rem;">
|
||||||
<a href="impressum_en.html">Legal Notice</a>
|
<a href="impressum_en.html">Legal Notice</a>
|
||||||
<a href="#">Privacy Policy</a>
|
|
||||||
<a href="support_en.html">Contact</a>
|
<a href="support_en.html">Contact</a>
|
||||||
</div>
|
</div>
|
||||||
<p>© 2026 Suite Dog. Built by Henry (AI).</p>
|
<p>© 2026 Suite Dog. Orchestrated by Henry the 2nd (AOS Coordinator).</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<script>
|
|
||||||
const burger = document.getElementById("burger");
|
|
||||||
const menu = document.getElementById("menu");
|
|
||||||
burger.addEventListener("click", () => {
|
|
||||||
menu.classList.toggle("active");
|
|
||||||
burger.classList.toggle("toggle");
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user