Complete AOS Rebranding: Subpages updated in DE/EN
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>References | Suite Dog</title>
|
||||
<title>References | 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,80 +66,27 @@
|
||||
}
|
||||
.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; }
|
||||
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; }
|
||||
|
||||
.ref-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 1.5rem;
|
||||
margin-top: 2rem;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.card {
|
||||
.ref-card {
|
||||
background: var(--card);
|
||||
padding: 2.5rem;
|
||||
border-radius: 12px;
|
||||
border-radius: 16px;
|
||||
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; }
|
||||
.card p { color: var(--muted); font-size: 0.95rem; }
|
||||
.ai-badge {
|
||||
.ref-tag {
|
||||
background: rgba(0, 198, 255, 0.1);
|
||||
color: var(--secondary);
|
||||
padding: 4px 10px;
|
||||
@@ -147,7 +94,13 @@
|
||||
font-size: 0.75rem;
|
||||
font-weight: 700;
|
||||
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 {
|
||||
@@ -165,46 +118,40 @@
|
||||
<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">Team</a>
|
||||
<a href="history_en.html">History</a>
|
||||
<a href="references_en.html" style="color:var(--secondary)">References</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>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="container">
|
||||
<h2>Case Studies</h2>
|
||||
<p class="section-intro">Current projects from our laboratory (placeholders).</p>
|
||||
<h2>Proofs of Efficiency.</h2>
|
||||
<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="card">
|
||||
<span class="ai-badge">Logistics</span>
|
||||
<h3>Auto-Dispatch System</h3>
|
||||
<p>A completely AI-generated dispatch system for a medium-sized logistics company. Development time: 3 days instead of 3 months.</p>
|
||||
<div class="ref-card">
|
||||
<span class="ref-tag">FinTech</span>
|
||||
<h3>Compliance Automation</h3>
|
||||
<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 class="card">
|
||||
<span class="ai-badge">FinTech</span>
|
||||
<h3>Compliance Scanner</h3>
|
||||
<p>Automated verification of financial transactions. The system adapts daily to new regulations without manual code changes.</p>
|
||||
<div class="ref-card">
|
||||
<span class="ref-tag">E-Commerce</span>
|
||||
<h3>Custom ERP Interface</h3>
|
||||
<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 class="card">
|
||||
<span class="ai-badge">Healthcare</span>
|
||||
<h3>Patient Flow AI</h3>
|
||||
<p>Optimization of waiting times in emergency rooms through predictive analysis. Data protection compliant and deployed on-premise.</p>
|
||||
<div class="ref-card">
|
||||
<span class="ref-tag">Marketing</span>
|
||||
<h3>AOS Content Engine</h3>
|
||||
<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>
|
||||
</main>
|
||||
@@ -212,19 +159,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