Complete AOS Rebranding: Subpages updated in DE/EN
This commit is contained in:
147
history.html
147
history.html
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Geschichte | Suite Dog</title>
|
||||
<title>Geschichte | Suite Dog AOS</title>
|
||||
<style>
|
||||
:root {
|
||||
--primary: #0072FF;
|
||||
@@ -13,6 +13,7 @@
|
||||
--text: #e0e6ed;
|
||||
--muted: #94a3b8;
|
||||
--header-h: 70px;
|
||||
--accent: #ffeb10;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
@@ -56,7 +57,6 @@
|
||||
|
||||
.logo img { height: 35px; width: 35px; }
|
||||
|
||||
/* NAV LINKS */
|
||||
.nav-menu { display: flex; gap: 1.5rem; }
|
||||
.nav-menu a {
|
||||
color: var(--muted);
|
||||
@@ -66,73 +66,68 @@
|
||||
}
|
||||
.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 */
|
||||
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
||||
h2 { color: #fff; margin-bottom: 1rem; text-align: center; }
|
||||
.section-intro { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }
|
||||
h2 { color: #fff; margin-bottom: 1rem; text-align: center; font-size: 2.5rem; }
|
||||
.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::after { content: ""; position: absolute; width: 2px; background: rgba(255,255,255,0.1); top: 0; bottom: 0; left: 50%; margin-left: -1px; }
|
||||
.timeline {
|
||||
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 {
|
||||
content: ""; position: absolute; width: 16px; height: 16px;
|
||||
right: -8px; background-color: var(--bg); border: 3px solid var(--secondary);
|
||||
top: 15px; border-radius: 50%; z-index: 1;
|
||||
content: '';
|
||||
position: absolute;
|
||||
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; }
|
||||
.right { left: 50%; }
|
||||
.right::after { left: -8px; }
|
||||
|
||||
.timeline-content {
|
||||
.content {
|
||||
padding: 1.5rem;
|
||||
background: var(--card);
|
||||
position: relative;
|
||||
border-radius: 12px;
|
||||
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) {
|
||||
.timeline::after { left: 31px; }
|
||||
.timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
|
||||
.timeline-item::after { left: 21px; }
|
||||
.left, .right { left: 0; }
|
||||
.timeline-item::after { left: 23px; }
|
||||
.right { left: 0; }
|
||||
}
|
||||
|
||||
/* FOOTER */
|
||||
@@ -151,15 +146,10 @@
|
||||
<div class="container nav-container">
|
||||
<a href="index.html" class="logo">
|
||||
<img src="logo.svg" alt="Suite Dog">
|
||||
Suite Dog
|
||||
Suite Dog AOS
|
||||
</a>
|
||||
<button class="burger" id="burger">
|
||||
<div class="line1"></div>
|
||||
<div class="line2"></div>
|
||||
<div class="line3"></div>
|
||||
</button>
|
||||
<nav class="nav-menu" id="menu">
|
||||
<a href="index.html#mission">Mission</a>
|
||||
<nav class="nav-menu">
|
||||
<a href="index.html#vision">Vision</a>
|
||||
<a href="team.html">Team</a>
|
||||
<a href="history.html" style="color:var(--secondary)">Geschichte</a>
|
||||
<a href="references.html">Referenzen</a>
|
||||
@@ -169,32 +159,29 @@
|
||||
</header>
|
||||
|
||||
<main class="container">
|
||||
<h2>Unsere Evolution</h2>
|
||||
<p class="section-intro">Vom ersten Prompt zur autonomen Software-Fabrik.</p>
|
||||
<h2>Vom Code zur AOS.</h2>
|
||||
<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-item left">
|
||||
<div class="timeline-content">
|
||||
<h3>Feb 2026: Die Initialisierung</h3>
|
||||
<p>Robert aktiviert "Henry". Das Konzept der AI-First Organization wird geboren. Erste Entscheidung: Kein SaaS, sondern individuelle Software "on the fly".</p>
|
||||
<div class="content">
|
||||
<span>Februar 2026</span>
|
||||
<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 class="timeline-item right">
|
||||
<div class="timeline-content">
|
||||
<h3>Phase 1: Das OS</h3>
|
||||
<p>Aufbau der Infrastruktur. Docker, Traefik und die ersten autonomen Agenten-Cluster gehen live. Die Webseite entsteht in Minuten durch KI.</p>
|
||||
<div class="content">
|
||||
<span>Januar 2026</span>
|
||||
<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 class="timeline-item left">
|
||||
<div class="timeline-content">
|
||||
<h3>Q2 2026: Skalierung (Vision)</h3>
|
||||
<p>Erste Kundenprojekte werden vollständig durch das AI-OS abgewickelt. Henry übernimmt 80% der operativen Last.</p>
|
||||
</div>
|
||||
</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 class="content">
|
||||
<span>Dezember 2025</span>
|
||||
<h3>Suite Dog Gründung</h3>
|
||||
<p>Robert gründet Suite Dog mit der Vision, Individualsoftware durch KI massiv zu beschleunigen.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -203,19 +190,9 @@
|
||||
<footer>
|
||||
<div style="margin-bottom: 1.5rem;">
|
||||
<a href="impressum.html">Impressum</a>
|
||||
<a href="#">Datenschutz</a>
|
||||
<a href="support.html">Kontakt</a>
|
||||
</div>
|
||||
<p>© 2026 Suite Dog. Built by Henry (AI).</p>
|
||||
<p>© 2026 Suite Dog. Orchestrated by Henry der 2. (AOS-Koordinator).</p>
|
||||
</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>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user