Complete AOS Rebranding: Subpages updated in DE/EN
This commit is contained in:
139
team_en.html
139
team_en.html
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Team | Suite Dog</title>
|
||||
<title>Team | 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,8 +57,7 @@
|
||||
|
||||
.logo img { height: 35px; width: 35px; }
|
||||
|
||||
/* NAV LINKS */
|
||||
.nav-menu { display: flex; gap: 1.5rem; align-items: center; }
|
||||
.nav-menu { display: flex; gap: 1.5rem; }
|
||||
.nav-menu a {
|
||||
color: var(--muted);
|
||||
text-decoration: none;
|
||||
@@ -66,89 +66,41 @@
|
||||
}
|
||||
.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 */
|
||||
main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
|
||||
h1, 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; }
|
||||
|
||||
.team-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 1.5rem;
|
||||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.team-member {
|
||||
background: var(--card);
|
||||
padding: 2rem;
|
||||
border-radius: 12px;
|
||||
padding: 2.5rem;
|
||||
border-radius: 16px;
|
||||
border: 1px solid rgba(255,255,255,0.05);
|
||||
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 {
|
||||
width: 80px; height: 80px;
|
||||
width: 90px; height: 90px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
||||
margin: 0 auto 1.5rem;
|
||||
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-member p { color: var(--muted); font-size: 0.95rem; margin-top: 1rem; }
|
||||
.team-role { color: var(--accent); font-size: 0.85rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 0.5rem; }
|
||||
.team-member h3 { color: #fff; margin-bottom: 1rem; }
|
||||
.team-member p { color: var(--muted); font-size: 1rem; line-height: 1.5; }
|
||||
|
||||
/* FOOTER */
|
||||
footer {
|
||||
@@ -166,55 +118,46 @@
|
||||
<div class="container nav-container">
|
||||
<a href="en.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="en.html#mission">Mission</a>
|
||||
<nav class="nav-menu">
|
||||
<a href="en.html#vision">Vision</a>
|
||||
<a href="team_en.html" style="color:var(--secondary)">Team</a>
|
||||
<a href="history_en.html">History</a>
|
||||
<a href="references_en.html">References</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>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="container">
|
||||
<h2>The Core Operations Team</h2>
|
||||
<p class="section-intro">A symbiosis of human vision and artificial execution.</p>
|
||||
<h2>Intelligence, Humanized.</h2>
|
||||
<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-member">
|
||||
<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>
|
||||
<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 class="team-member">
|
||||
<div class="team-avatar">H</div>
|
||||
<div class="team-role">Chief AI Officer</div>
|
||||
<h3>Henry</h3>
|
||||
<p>Orchestrates the AI cluster. Critical sparring partner and operational lead of the systems.</p>
|
||||
<div class="team-avatar" style="background: linear-gradient(135deg, var(--accent), #e3c000);">H</div>
|
||||
<div class="team-role">AOS Coordinator</div>
|
||||
<h3>Henry the 2nd</h3>
|
||||
<p>The central AI interface. Coordinates agent workflows, ensures collective memory, and manages operational processes.</p>
|
||||
</div>
|
||||
<div class="team-member">
|
||||
<div class="team-avatar" style="background: #2ecc71;">T</div>
|
||||
<div class="team-role">Tech Cluster</div>
|
||||
<h3>Dev Bots</h3>
|
||||
<p>Autonomous agents for frontend, backend, and infrastructure. Working 24/7 on code and optimization.</p>
|
||||
<div class="team-avatar" style="background: #2ecc71;">E</div>
|
||||
<div class="team-role">Execution Units</div>
|
||||
<h3>Specialized Agents</h3>
|
||||
<p>Highly specialized units for architecture, code development, and marketing. Working in synchronization to implement complex projects.</p>
|
||||
</div>
|
||||
<div class="team-member">
|
||||
<div class="team-avatar" style="background: #f1c40f;">Q</div>
|
||||
<div class="team-role">QA Cluster</div>
|
||||
<h3>QA Swarm</h3>
|
||||
<p>Automated testing and security scans with every commit for maximum stability.</p>
|
||||
<div class="team-role">Quality Control</div>
|
||||
<h3>QA Cluster</h3>
|
||||
<p>Fully automated validation units. Ensuring maximum software quality through deterministic testing processes.</p>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
@@ -222,19 +165,9 @@
|
||||
<footer>
|
||||
<div style="margin-bottom: 1.5rem;">
|
||||
<a href="impressum_en.html">Legal Notice</a>
|
||||
<a href="#">Privacy Policy</a>
|
||||
<a href="support_en.html">Contact</a>
|
||||
</div>
|
||||
<p>© 2026 Suite Dog. Built by Henry (AI).</p>
|
||||
<p>© 2026 Suite Dog. Orchestrated by Henry the 2nd (AOS Coordinator).</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