i18n: Sprachumschalter DE/EN und englische Seiten unter /en/
- Neuer .lang-switcher Komponente in css/lang-switcher.css, Variante fuer dunkle Lagebild-Seiten enthalten - Sprachumschalter im Header und Mobile-Menue aller DE-Seiten (index, impressum, datenschutz, lagen/*) - Englische Seiten unter /en/index.html, /en/legal-notice.html und /en/privacy.html mit kompletter Uebersetzung; rechtliche Texte mit Hinweis "German version shall prevail" - hreflang-Tags (de/en/x-default) auf Hauptseite und rechtlichen Seiten; Lagen-Seiten ohne hreflang bis EN-Versionen existieren - og:locale + og:locale:alternate gesetzt, Schema.org bleibt - Sitemap mit xhtml:link Alternates fuer beide Sprachen ergaenzt - DE-Lagen-Toggle zeigt vorerst auf /en/ (EN-Lagen folgen Phase 3) - Cookie-Banner liest <html lang> bereits selbststaendig, daher englisch auf EN-Seiten ohne weitere Aenderung Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Dieser Commit ist enthalten in:
73
css/lang-switcher.css
Normale Datei
73
css/lang-switcher.css
Normale Datei
@@ -0,0 +1,73 @@
|
||||
/* Language switcher (DE/EN)
|
||||
Used on every page in the site header and inside the mobile menu.
|
||||
Active language is non-clickable, inactive language is a link to the
|
||||
counterpart URL. Pendant URL is hardcoded per page so the switch works
|
||||
without JavaScript. */
|
||||
|
||||
.lang-switcher {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.4em;
|
||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.04em;
|
||||
user-select: none;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.lang-switcher .lang-active {
|
||||
color: #C8A851;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.lang-switcher .lang-link {
|
||||
color: #5A6478;
|
||||
text-decoration: none;
|
||||
transition: color 0.2s ease;
|
||||
padding: 0.15em 0;
|
||||
}
|
||||
|
||||
.lang-switcher .lang-link:hover,
|
||||
.lang-switcher .lang-link:focus-visible {
|
||||
color: #C8A851;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.lang-switcher .lang-sep {
|
||||
color: #5A6478;
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
/* Dark variant for the lagebild pages (dark navbar) */
|
||||
.lagebild-page .lang-switcher .lang-link,
|
||||
.lang-switcher.lang-switcher-dark .lang-link {
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
.lagebild-page .lang-switcher .lang-link:hover,
|
||||
.lagebild-page .lang-switcher .lang-link:focus-visible,
|
||||
.lang-switcher.lang-switcher-dark .lang-link:hover,
|
||||
.lang-switcher.lang-switcher-dark .lang-link:focus-visible {
|
||||
color: #C8A851;
|
||||
}
|
||||
|
||||
.lagebild-page .lang-switcher .lang-sep,
|
||||
.lang-switcher.lang-switcher-dark .lang-sep {
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
/* Inside mobile menus: full-width row with separator on top */
|
||||
.mobile-menu .lang-switcher,
|
||||
.nav-menu-mobile .lang-switcher {
|
||||
margin-top: 1rem;
|
||||
padding-top: 1rem;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.08);
|
||||
font-size: 1rem;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.lagebild-page .nav-menu-mobile .lang-switcher {
|
||||
border-top-color: rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
@@ -46,6 +46,8 @@ a { color:inherit; text-decoration:none; }
|
||||
.nav-menu a { font-size:0.9rem; font-weight:500; color:var(--navy); transition:color 0.2s; }
|
||||
.nav-menu a:hover { color:var(--gold); }
|
||||
|
||||
.nav-extras { display:flex; align-items:center; gap:18px; }
|
||||
|
||||
.mobile-menu-toggle { display:none; background:none; border:none; cursor:pointer; width:32px; height:24px; position:relative; flex-direction:column; justify-content:space-between; }
|
||||
.mobile-menu-toggle span { display:block; width:100%; height:2px; background:var(--navy); border-radius:2px; transition:transform 0.3s,opacity 0.3s; }
|
||||
.mobile-menu-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(7px,7px); }
|
||||
|
||||
@@ -9,6 +9,10 @@
|
||||
<meta name="robots" content="noindex, nofollow, noarchive, nosnippet, noimageindex">
|
||||
<meta name="googlebot" content="noindex, nofollow, noarchive, nosnippet, noimageindex">
|
||||
|
||||
<link rel="alternate" hreflang="de" href="https://aegis-sight.de/datenschutz.html">
|
||||
<link rel="alternate" hreflang="en" href="https://aegis-sight.de/en/privacy.html">
|
||||
<link rel="alternate" hreflang="x-default" href="https://aegis-sight.de/datenschutz.html">
|
||||
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="apple-touch-icon" href="/assets/images/logos/AegisSightLogo_NavyGold.svg">
|
||||
|
||||
@@ -17,6 +21,7 @@
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/lang-switcher.css">
|
||||
<link rel="stylesheet" href="/cookie-consent.css">
|
||||
<style>
|
||||
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--white); margin: 0; }
|
||||
@@ -59,9 +64,16 @@
|
||||
<li><a href="/#trust">Über uns</a></li>
|
||||
<li><a href="/#contact">Kontakt</a></li>
|
||||
</ul>
|
||||
<button class="mobile-menu-toggle" aria-label="Menü öffnen" aria-expanded="false">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
<div class="nav-extras">
|
||||
<div class="lang-switcher" role="group" aria-label="Sprache">
|
||||
<span class="lang-active" lang="de" aria-current="true">DE</span>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<a class="lang-link" href="/en/privacy.html" lang="en" hreflang="en" rel="alternate">EN</a>
|
||||
</div>
|
||||
<button class="mobile-menu-toggle" aria-label="Menü öffnen" aria-expanded="false">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
@@ -73,6 +85,11 @@
|
||||
<li><a href="/#trust">Über uns</a></li>
|
||||
<li><a href="/#contact">Kontakt</a></li>
|
||||
</ul>
|
||||
<div class="lang-switcher" role="group" aria-label="Sprache">
|
||||
<span class="lang-active" lang="de" aria-current="true">DE</span>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<a class="lang-link" href="/en/privacy.html" lang="en" hreflang="en" rel="alternate">EN</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mobile-overlay" id="mobile-overlay"></div>
|
||||
|
||||
|
||||
504
en/index.html
Normale Datei
504
en/index.html
Normale Datei
@@ -0,0 +1,504 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>AegisSight Monitor – Real-time situation reports from open sources</title>
|
||||
<meta name="description" content="OSINT monitoring software from Germany: AI-powered real-time situation reports from open sources. For government agencies, newsrooms, and security services.">
|
||||
<meta name="robots" content="noindex, nofollow, noarchive">
|
||||
<link rel="canonical" href="https://aegis-sight.de/en/">
|
||||
<link rel="alternate" hreflang="de" href="https://aegis-sight.de/">
|
||||
<link rel="alternate" hreflang="en" href="https://aegis-sight.de/en/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://aegis-sight.de/">
|
||||
|
||||
<!-- Open Graph / Social Sharing -->
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="AegisSight">
|
||||
<meta property="og:title" content="AegisSight Monitor – Real-time situation reports from open sources">
|
||||
<meta property="og:description" content="AI-powered real-time situation reports from open sources. For government agencies, newsrooms, and security services – Made in Germany.">
|
||||
<meta property="og:url" content="https://aegis-sight.de/en/">
|
||||
<meta property="og:image" content="https://aegis-sight.de/assets/images/og-image.png">
|
||||
<meta property="og:image:width" content="1200">
|
||||
<meta property="og:image:height" content="630">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="de_DE">
|
||||
|
||||
<!-- Twitter Card -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="AegisSight Monitor – Real-time situation reports from open sources">
|
||||
<meta name="twitter:description" content="AI-powered real-time situation reports from open sources. For government agencies, newsrooms, and security services – Made in Germany.">
|
||||
<meta name="twitter:image" content="https://aegis-sight.de/assets/images/og-image.png">
|
||||
|
||||
<!-- Schema.org Organization -->
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
"name": "AegisSight UG (haftungsbeschränkt)",
|
||||
"alternateName": "AegisSight",
|
||||
"url": "https://aegis-sight.de",
|
||||
"logo": "https://aegis-sight.de/assets/images/logos/AegisSightLogo_NavyGold.svg",
|
||||
"email": "info@aegis-sight.de",
|
||||
"address": {
|
||||
"@type": "PostalAddress",
|
||||
"streetAddress": "Gladbacher Straße 3-5",
|
||||
"postalCode": "40764",
|
||||
"addressLocality": "Langenfeld",
|
||||
"addressRegion": "Nordrhein-Westfalen",
|
||||
"addressCountry": "DE"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="apple-touch-icon" href="/assets/images/logos/AegisSightLogo_NavyGold.svg">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.5.3/dist/MarkerCluster.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.5.3/dist/MarkerCluster.Default.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/lang-switcher.css">
|
||||
<link rel="stylesheet" href="/cookie-consent.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="nav-container">
|
||||
<a href="#hero" class="nav-logo">
|
||||
<img src="/assets/images/logos/Logo+Schrift_Rechts.png" alt="AegisSight" class="logo-img">
|
||||
</a>
|
||||
<ul class="nav-menu">
|
||||
<li><a href="#features">Features</a></li>
|
||||
<li><a href="#demos">Live Reports</a></li>
|
||||
<li><a href="#trust">About Us</a></li>
|
||||
<li><a href="#contact">Contact</a></li>
|
||||
</ul>
|
||||
<div class="nav-extras">
|
||||
<div class="lang-switcher" role="group" aria-label="Language">
|
||||
<a class="lang-link" href="/" lang="de" hreflang="de" rel="alternate">DE</a>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<span class="lang-active" lang="en" aria-current="true">EN</span>
|
||||
</div>
|
||||
<button class="mobile-menu-toggle" aria-label="Open menu" aria-expanded="false">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Mobile Menu -->
|
||||
<div class="mobile-menu" id="mobile-menu" aria-hidden="true">
|
||||
<ul>
|
||||
<li><a href="#features">Features</a></li>
|
||||
<li><a href="#demos">Live Reports</a></li>
|
||||
<li><a href="#trust">About Us</a></li>
|
||||
<li><a href="#contact">Contact</a></li>
|
||||
</ul>
|
||||
<div class="lang-switcher" role="group" aria-label="Language">
|
||||
<a class="lang-link" href="/" lang="de" hreflang="de" rel="alternate">DE</a>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<span class="lang-active" lang="en" aria-current="true">EN</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mobile-overlay" id="mobile-overlay"></div>
|
||||
|
||||
<!-- Hero Section -->
|
||||
<section class="hero" id="hero">
|
||||
<div class="hero-overlay"></div>
|
||||
<div class="hero-content">
|
||||
<div class="hero-brand">
|
||||
<h1 class="hero-title">AegisSight Monitor</h1>
|
||||
<p class="hero-tagline">AI-powered real-time situation reports from open sources, <span class="gold">fully automated.</span></p>
|
||||
</div>
|
||||
|
||||
<div class="hero-slider" role="region" aria-label="Product highlights" aria-live="polite">
|
||||
<!-- Slide 1: Real-time monitoring (Video) -->
|
||||
<div class="hero-slide active" data-slide="0">
|
||||
<div class="hero-slide-video">
|
||||
<video muted playsinline preload="auto">
|
||||
<source src="/videos/hero-slide-1-monitoring.mp4" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
<div class="hero-slide-bottom">
|
||||
<p class="hero-slide-example">Live example: The Iran conflict is continuously monitored with over 14,900 articles from 375 sources.</p>
|
||||
<div class="hero-slide-cta">
|
||||
<a href="#demos" class="btn btn-primary" onclick="positionCards(0)">View live example</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Slide 2: Automated fact-checking (Video) -->
|
||||
<div class="hero-slide" data-slide="1">
|
||||
<div class="hero-slide-video">
|
||||
<video muted playsinline preload="metadata">
|
||||
<source src="/videos/hero-slide-2-monitoring.mp4?v=3" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Slide 3: AI-powered research (Video) -->
|
||||
<div class="hero-slide" data-slide="2">
|
||||
<div class="hero-slide-video">
|
||||
<video muted playsinline preload="metadata">
|
||||
<source src="/videos/hero-slide-3-monitoring.mp4?v=2" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
<div class="hero-slide-bottom">
|
||||
<p class="hero-slide-example">Example: A dossier on the legal status of deepfakes in Germany, 121 articles from 90 sources, automatically generated.</p>
|
||||
<div class="hero-slide-cta">
|
||||
<a href="#demos" class="btn btn-primary" onclick="positionCards(2)">View research example</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Slide 4: Global source coverage (Video) -->
|
||||
<div class="hero-slide" data-slide="3">
|
||||
<div class="hero-slide-video">
|
||||
<video muted playsinline preload="metadata">
|
||||
<source src="/videos/hero-slide-4-monitoring.mp4" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
<div class="hero-slide-bottom">
|
||||
<p class="hero-slide-example">In the Iran conflict, primary sources in Farsi, Arabic, and Hebrew are analysed directly.</p>
|
||||
<div class="hero-slide-cta">
|
||||
<a href="#demos" class="btn btn-primary" onclick="positionCards(0)">View live example</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Slide 5: Flexible deployment (Video) -->
|
||||
<div class="hero-slide" data-slide="4">
|
||||
<div class="hero-slide-video">
|
||||
<video muted playsinline preload="metadata">
|
||||
<source src="/videos/hero-slide-5-monitoring.mp4?v=2" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
<div class="hero-slide-bottom">
|
||||
<p class="hero-slide-example">Example: Cyberattacks on German infrastructure, 93 articles from 41 sources, monitored automatically.</p>
|
||||
<div class="hero-slide-cta">
|
||||
<a href="#demos" class="btn btn-primary" onclick="positionCards(1)">View live example</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hero-slider-nav">
|
||||
<div class="hero-slider-dots">
|
||||
<button class="hero-dot active" data-slide="0" aria-label="Real-time monitoring"></button>
|
||||
<button class="hero-dot" data-slide="1" aria-label="Fact check"></button>
|
||||
<button class="hero-dot" data-slide="2" aria-label="AI-powered research"></button>
|
||||
<button class="hero-dot" data-slide="3" aria-label="Global coverage"></button>
|
||||
<button class="hero-dot" data-slide="4" aria-label="Flexible deployment"></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hero-slider-arrows">
|
||||
<button class="hero-arrow hero-arrow-prev" aria-label="Previous slide">←</button>
|
||||
<button class="hero-arrow hero-arrow-next" aria-label="Next slide">→</button>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Features -->
|
||||
<section class="section section-dark" id="features">
|
||||
<div class="container">
|
||||
<h2 class="section-title">What the Monitor delivers</h2>
|
||||
<!-- Highlight: Fact-checking -->
|
||||
<div class="feature-statement">
|
||||
<p class="feature-statement-text">Every claim is automatically verified against independent sources.</p>
|
||||
<p class="feature-statement-sub">Status history, evidence, and source attribution. Automated and traceable.</p>
|
||||
</div>
|
||||
|
||||
<div class="grid-3">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<img src="/assets/images/icons/monitor.svg" alt="" width="36" height="36">
|
||||
</div>
|
||||
<h3>Real-time monitoring</h3>
|
||||
<p>Continuous monitoring of your defined sources, around the clock.</p>
|
||||
</div>
|
||||
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<img src="/assets/images/icons/cube.svg" alt="" width="36" height="36">
|
||||
</div>
|
||||
<h3>Source analysis</h3>
|
||||
<p>Automatic aggregation and deduplication from hundreds of international sources.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<img src="/assets/images/icons/location.svg" alt="" width="36" height="36">
|
||||
</div>
|
||||
<h3>Geographic mapping</h3>
|
||||
<p>Locations are recognised and shown on an interactive map.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<img src="/assets/images/icons/languages.svg" alt="" width="36" height="36">
|
||||
</div>
|
||||
<h3>Multilingual analysis</h3>
|
||||
<p>Sources in different languages are processed and merged automatically.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<img src="/assets/images/icons/document.svg" alt="" width="36" height="36">
|
||||
</div>
|
||||
<h3>Structured situation reports</h3>
|
||||
<p>Concise summaries with source attribution and timeline.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Gradient: Features -> Problem -->
|
||||
<div class="divider divider-gradient-dark-to-base"></div>
|
||||
|
||||
<!-- Problem Statement -->
|
||||
<section class="section section-base" id="problem">
|
||||
<div class="container">
|
||||
<h2 class="section-title">Why manual OSINT analysis does not scale</h2>
|
||||
<p class="section-subtitle">Analysts in security agencies, newsrooms, and companies face the same challenge every day.</p>
|
||||
<div class="grid-3">
|
||||
<div class="problem-card">
|
||||
<div class="problem-icon">
|
||||
<img src="/assets/images/icons/world-globe.svg" alt="" width="40" height="40">
|
||||
</div>
|
||||
<h3>Source diversity</h3>
|
||||
<p>Hundreds of news agencies, Telegram channels, and social media in dozens of languages. No analyst can monitor everything at once.</p>
|
||||
</div>
|
||||
<div class="problem-card">
|
||||
<div class="problem-icon">
|
||||
<img src="/assets/images/icons/clock.svg" alt="" width="40" height="40">
|
||||
</div>
|
||||
<h3>Time pressure</h3>
|
||||
<p>New reports arrive by the minute. Manual analysis takes time you do not have.</p>
|
||||
</div>
|
||||
<div class="problem-card">
|
||||
<div class="problem-icon">
|
||||
<img src="/assets/images/icons/document.svg" alt="" width="40" height="40">
|
||||
</div>
|
||||
<h3>Information overload</h3>
|
||||
<p>Critical information disappears in the noise; connections remain invisible.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Gradient: Problem -> Workflow -->
|
||||
<div class="divider divider-gradient-base-to-alt"></div>
|
||||
|
||||
<!-- Solution / Workflow -->
|
||||
<section class="section section-alt" id="solution">
|
||||
<div class="container">
|
||||
<h2 class="section-title">How the AegisSight Monitor works</h2>
|
||||
<div class="workflow">
|
||||
<div class="workflow-step">
|
||||
<div class="step-number">1</div>
|
||||
<h3>Collect</h3>
|
||||
<p>Hundreds of sources are continuously monitored. News agencies, Telegram, social media, and more.</p>
|
||||
</div>
|
||||
<div class="workflow-connector"></div>
|
||||
<div class="workflow-step">
|
||||
<div class="step-number">2</div>
|
||||
<h3>Analyse</h3>
|
||||
<p>Reports are automatically evaluated, fact-checked, and geographically mapped.</p>
|
||||
</div>
|
||||
<div class="workflow-connector"></div>
|
||||
<div class="workflow-step">
|
||||
<div class="step-number">3</div>
|
||||
<h3>Report</h3>
|
||||
<p>Structured situation reports with source attribution, fact checks, and map view. In real time.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Gradient: Solution -> Demos -->
|
||||
<div class="divider divider-gradient-alt-to-base"></div>
|
||||
|
||||
<!-- Live Demos / Showcase -->
|
||||
<section class="section section-base" id="demos">
|
||||
<div class="container">
|
||||
<!-- Live Stats Bar -->
|
||||
<div class="live-stats-bar">
|
||||
<div class="live-stats-title">Major situation - Iran conflict</div>
|
||||
<div class="live-stats-row">
|
||||
<div class="live-stat">
|
||||
<span class="live-stat-value" id="stat-articles">...</span>
|
||||
<span class="live-stat-label">Articles</span>
|
||||
</div>
|
||||
<div class="live-stat">
|
||||
<span class="live-stat-value" id="stat-sources">...</span>
|
||||
<span class="live-stat-label">Sources</span>
|
||||
</div>
|
||||
<div class="live-stat">
|
||||
<span class="live-stat-value" id="stat-factchecks">...</span>
|
||||
<span class="live-stat-label">Fact checks</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 3D Carousel -->
|
||||
<div class="carousel-viewport">
|
||||
<button class="carousel-arrow carousel-prev" aria-label="Previous situation">‹</button>
|
||||
<button class="carousel-arrow carousel-next" aria-label="Next situation">›</button>
|
||||
<div class="carousel-track" id="carousel">
|
||||
<!-- Iran Card -->
|
||||
<div class="carousel-card card-live active" data-index="0" data-lage="iran-konflikt">
|
||||
<div class="demo-badge">LIVE</div>
|
||||
<h3 class="demo-title">Iran conflict</h3>
|
||||
|
||||
<div class="demo-excerpt" id="demo-excerpt">
|
||||
<div class="excerpt-text" id="excerpt-text">Situation report loading...</div>
|
||||
</div>
|
||||
<a href="/lagen/iran-konflikt/" class="btn btn-primary btn-block">Open full situation report</a>
|
||||
</div>
|
||||
<!-- Cyberattacks -->
|
||||
<div class="carousel-card card-live" data-index="1" data-lage="cyberangriffe">
|
||||
<div class="demo-badge">LIVE</div>
|
||||
<h3 class="demo-title">Cyberattacks on German infrastructure</h3>
|
||||
|
||||
<div class="demo-excerpt" id="demo-excerpt-cyberangriffe">
|
||||
<div class="excerpt-text" id="excerpt-text-cyberangriffe">Situation report loading...</div>
|
||||
</div>
|
||||
<a href="/lagen/cyberangriffe/" class="btn btn-primary btn-block">Open full situation report</a>
|
||||
</div>
|
||||
<!-- Deepfakes Research -->
|
||||
<div class="carousel-card card-live" data-index="2" data-lage="deepfakes">
|
||||
<div class="demo-badge">RESEARCH</div>
|
||||
<h3 class="demo-title">Legal status of deepfakes in Germany</h3>
|
||||
|
||||
<div class="demo-excerpt" id="demo-excerpt-deepfakes">
|
||||
<div class="excerpt-text" id="excerpt-text-deepfakes">Research loading...</div>
|
||||
</div>
|
||||
<a href="/lagen/deepfakes/" class="btn btn-primary btn-block">Open full research</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="carousel-nav">
|
||||
<button class="carousel-dot active" data-index="0"></button>
|
||||
<button class="carousel-dot" data-index="1"></button>
|
||||
<button class="carousel-dot" data-index="2"></button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Map -->
|
||||
<div class="map-section" id="map-section">
|
||||
<h3 class="map-title" id="map-title">Geographic distribution of reports</h3>
|
||||
<div id="map-container"></div>
|
||||
<div class="map-empty" id="map-empty" style="display:none">Map data follows</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Gradient: Demos -> Contact -->
|
||||
<div class="divider"></div>
|
||||
|
||||
<!-- Contact CTA -->
|
||||
<section class="section section-base" id="contact">
|
||||
<div class="container cta-container">
|
||||
<h2 class="section-title">Interested in AegisSight Monitor?</h2>
|
||||
<p class="cta-text">Talk to us about your use case.</p>
|
||||
<button class="btn btn-primary btn-lg" onclick="openContactModal()">Get in touch</button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Diagonal: Contact -> Trust -->
|
||||
<div class="divider divider-diagonal-dark">
|
||||
<svg viewBox="0 0 1440 60" preserveAspectRatio="none"><path d="M0,60 L1440,0 L1440,60 Z" fill="#132844"/></svg>
|
||||
</div>
|
||||
|
||||
<!-- Trust / Our Commitment -->
|
||||
<section class="section section-dark" id="trust">
|
||||
<div class="container">
|
||||
<h2 class="section-title">Our commitment</h2>
|
||||
<div class="grid-4 trust-grid">
|
||||
<div class="trust-card">
|
||||
<div class="trust-icon-wrap">
|
||||
<img src="/assets/images/icons/check-circle-filled.svg" alt="" width="48" height="48">
|
||||
</div>
|
||||
<h3>Close collaboration</h3>
|
||||
<p>We work hand in hand with our customers to deliver tailored solutions</p>
|
||||
</div>
|
||||
<div class="trust-card">
|
||||
<div class="trust-icon-wrap trust-flag">
|
||||
<img src="/assets/images/icons/german-flag.svg" alt="" width="60" height="36">
|
||||
</div>
|
||||
<h3>Made in Germany</h3>
|
||||
<p>Clear, robust, and secure software built to German quality standards</p>
|
||||
</div>
|
||||
<div class="trust-card">
|
||||
<div class="trust-icon-wrap">
|
||||
<img src="/assets/handshake.svg" alt="" width="50" height="50">
|
||||
</div>
|
||||
<h3>Reliable partnership</h3>
|
||||
<p>Based on shared values and long-term trust</p>
|
||||
</div>
|
||||
<div class="trust-card">
|
||||
<div class="trust-icon-wrap">
|
||||
<img src="/assets/images/icons/shield-check.svg" alt="" width="48" height="48">
|
||||
</div>
|
||||
<h3>Sustainability</h3>
|
||||
<p>Focus on security, professionalism, and future-proof solutions</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-content">
|
||||
<div class="footer-info">
|
||||
<p class="footer-company">AegisSight UG (haftungsbeschränkt)</p>
|
||||
<p>Gladbacher Straße 3-5, 40764 Langenfeld, Germany</p>
|
||||
</div>
|
||||
<div class="footer-links">
|
||||
<a href="/en/legal-notice.html">Legal notice</a>
|
||||
<a href="/en/privacy.html">Privacy policy</a>
|
||||
<a href="#" id="cookie-settings-link">Cookie settings</a>
|
||||
</div>
|
||||
</div>
|
||||
<p class="footer-copyright">© <span id="footer-year">2026</span> AegisSight UG (haftungsbeschränkt). All rights reserved.</p>
|
||||
</div>
|
||||
</footer>
|
||||
<script>document.getElementById('footer-year').textContent=new Date().getFullYear();</script>
|
||||
|
||||
|
||||
<!-- Contact Modal -->
|
||||
<div class="modal-overlay" id="contact-modal" style="display:none">
|
||||
<div class="modal-content">
|
||||
<button class="modal-close" onclick="closeContactModal()" aria-label="Close">×</button>
|
||||
<h2>Get in touch</h2>
|
||||
<p class="modal-sub">Talk to us about your use case.</p>
|
||||
<form id="contact-form" onsubmit="return submitContact(event)">
|
||||
<div class="form-row">
|
||||
<div class="form-group">
|
||||
<label for="cf-name">Name</label>
|
||||
<input type="text" id="cf-name" name="name" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="cf-org">Organisation</label>
|
||||
<input type="text" id="cf-org" name="organisation">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="cf-email">Email</label>
|
||||
<input type="email" id="cf-email" name="email" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="cf-message">Message</label>
|
||||
<textarea id="cf-message" name="message" rows="4" required></textarea>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary btn-block">Send message</button>
|
||||
</form>
|
||||
<div class="form-success" id="form-success" style="display:none">
|
||||
<p>Thank you for your message. We will get back to you shortly.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
|
||||
<script src="https://unpkg.com/leaflet.markercluster@1.5.3/dist/leaflet.markercluster.js"></script>
|
||||
<script src="/js/app.js"></script>
|
||||
<script src="/cookie-consent.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
175
en/legal-notice.html
Normale Datei
175
en/legal-notice.html
Normale Datei
@@ -0,0 +1,175 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Legal notice – AegisSight</title>
|
||||
|
||||
<!-- Exclude legal pages from search engines -->
|
||||
<meta name="robots" content="noindex, nofollow, noarchive, nosnippet, noimageindex">
|
||||
<meta name="googlebot" content="noindex, nofollow, noarchive, nosnippet, noimageindex">
|
||||
|
||||
<link rel="alternate" hreflang="de" href="https://aegis-sight.de/impressum.html">
|
||||
<link rel="alternate" hreflang="en" href="https://aegis-sight.de/en/legal-notice.html">
|
||||
<link rel="alternate" hreflang="x-default" href="https://aegis-sight.de/impressum.html">
|
||||
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="apple-touch-icon" href="/assets/images/logos/AegisSightLogo_NavyGold.svg">
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/lang-switcher.css">
|
||||
<link rel="stylesheet" href="/cookie-consent.css">
|
||||
<style>
|
||||
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--white); margin: 0; }
|
||||
.legal-page { padding: calc(var(--nav-height) + 56px) 0 80px; min-height: calc(100vh - 220px); }
|
||||
.legal-container { max-width: 820px; margin: 0 auto; padding: 0 24px; }
|
||||
.legal-container h1 { font-size: 2.25rem; font-weight: 700; color: var(--navy); margin: 0 0 12px; }
|
||||
.legal-meta { color: var(--text-light); margin: 0 0 32px; font-size: 0.95rem; }
|
||||
.legal-content { background: var(--base); border-radius: var(--radius-lg); padding: 32px 40px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
|
||||
.legal-section { margin-bottom: 28px; }
|
||||
.legal-section:last-child { margin-bottom: 0; }
|
||||
.legal-section h2 { font-size: 1.35rem; font-weight: 700; color: var(--navy); margin: 0 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
|
||||
.legal-section h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin: 22px 0 8px; }
|
||||
.legal-section p { margin: 0 0 12px; line-height: 1.7; color: var(--text); font-size: 0.95rem; }
|
||||
.legal-section a { color: var(--gold-dark); text-decoration: underline; }
|
||||
.legal-section a:hover { color: var(--gold); }
|
||||
.legal-section ul { margin: 12px 0 16px 22px; padding: 0; }
|
||||
.legal-section li { margin-bottom: 6px; line-height: 1.6; color: var(--text); font-size: 0.95rem; }
|
||||
.legal-section strong { color: var(--navy); font-weight: 600; }
|
||||
.legal-section table { width: 100%; border-collapse: collapse; margin: 12px 0 16px; }
|
||||
.legal-section td, .legal-section th { padding: 8px 12px; border: 1px solid var(--gray-200); text-align: left; font-size: 0.92rem; }
|
||||
.source-note { margin-top: 40px; padding-top: 16px; border-top: 1px solid var(--gray-200); font-size: 0.85rem; color: var(--text-light); }
|
||||
.source-note a { color: var(--gold-dark); }
|
||||
.translation-note { margin: 0 0 32px; padding: 14px 18px; background: rgba(200, 168, 81, 0.08); border-left: 3px solid var(--gold); font-size: 0.92rem; color: var(--text); line-height: 1.6; }
|
||||
@media (max-width: 768px) {
|
||||
.legal-container { padding: 0 16px; }
|
||||
.legal-content { padding: 24px 20px; }
|
||||
.legal-container h1 { font-size: 1.75rem; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="nav-container">
|
||||
<a href="/en/" class="nav-logo">
|
||||
<img src="/assets/images/logos/Logo+Schrift_Rechts.png" alt="AegisSight" class="logo-img">
|
||||
</a>
|
||||
<ul class="nav-menu">
|
||||
<li><a href="/en/#features">Features</a></li>
|
||||
<li><a href="/en/#demos">Live Reports</a></li>
|
||||
<li><a href="/en/#trust">About Us</a></li>
|
||||
<li><a href="/en/#contact">Contact</a></li>
|
||||
</ul>
|
||||
<div class="nav-extras">
|
||||
<div class="lang-switcher" role="group" aria-label="Language">
|
||||
<a class="lang-link" href="/impressum.html" lang="de" hreflang="de" rel="alternate">DE</a>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<span class="lang-active" lang="en" aria-current="true">EN</span>
|
||||
</div>
|
||||
<button class="mobile-menu-toggle" aria-label="Open menu" aria-expanded="false">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Mobile Menu -->
|
||||
<div class="mobile-menu" id="mobile-menu" aria-hidden="true">
|
||||
<ul>
|
||||
<li><a href="/en/#features">Features</a></li>
|
||||
<li><a href="/en/#demos">Live Reports</a></li>
|
||||
<li><a href="/en/#trust">About Us</a></li>
|
||||
<li><a href="/en/#contact">Contact</a></li>
|
||||
</ul>
|
||||
<div class="lang-switcher" role="group" aria-label="Language">
|
||||
<a class="lang-link" href="/impressum.html" lang="de" hreflang="de" rel="alternate">DE</a>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<span class="lang-active" lang="en" aria-current="true">EN</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mobile-overlay" id="mobile-overlay"></div>
|
||||
|
||||
<main class="legal-page">
|
||||
<div class="legal-container">
|
||||
<h1>Legal notice</h1>
|
||||
<p class="translation-note">This is a translation of our German legal notice provided for convenience. In the event of any conflict, the <a href="/impressum.html">German version</a> shall prevail.</p>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>Information pursuant to § 5 TMG</h2>
|
||||
<p><strong>AegisSight UG (haftungsbeschränkt)</strong></p>
|
||||
<p>Gladbacher Strasse 3-5<br>
|
||||
40764 Langenfeld<br>
|
||||
Germany</p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>Represented by</h2>
|
||||
<p>Hendrik Gebhardt<br>
|
||||
Monami Homma</p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>Contact</h2>
|
||||
<p>Email: info@aegis-sight.de</p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>Registry entry</h2>
|
||||
<p>Commercial register: HRB 110105<br>
|
||||
Registry court: District Court of Düsseldorf</p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>VAT identification number</h2>
|
||||
<p>VAT identification number pursuant to § 27 a of the German Value Added Tax Act:<br>
|
||||
DE457846602</p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>Consumer dispute resolution / universal arbitration board</h2>
|
||||
<p>We are not willing or obliged to participate in dispute resolution proceedings before a consumer arbitration board.</p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>Disclaimer</h2>
|
||||
<p><strong>Liability for content</strong><br>
|
||||
The content on our pages has been created with the utmost care. However, we cannot guarantee that the content is accurate, complete, or up to date. As a service provider, we are responsible for our own content on these pages in accordance with general laws pursuant to § 7 (1) TMG. According to §§ 8 to 10 TMG, however, we as a service provider are not obliged to monitor transmitted or stored third-party information or to investigate circumstances that indicate illegal activity.</p>
|
||||
|
||||
<p><strong>Liability for links</strong><br>
|
||||
Our offer contains links to external third-party websites whose content we have no influence over. For this reason, we cannot assume any liability for this third-party content. The respective provider or operator of the linked pages is always responsible for their content.</p>
|
||||
|
||||
<p><strong>Copyright</strong><br>
|
||||
The content and works on these pages created by the site operators are subject to German copyright law. Reproduction, processing, distribution, and any kind of exploitation outside the limits of copyright law require the written consent of the respective author or creator.</p>
|
||||
|
||||
<p class="source-note">Source: <a href="https://www.e-recht24.de" target="_blank" rel="noopener">eRecht24</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-content">
|
||||
<div class="footer-info">
|
||||
<p class="footer-company">AegisSight UG (haftungsbeschränkt)</p>
|
||||
<p>Gladbacher Straße 3-5, 40764 Langenfeld, Germany</p>
|
||||
</div>
|
||||
<div class="footer-links">
|
||||
<a href="/en/legal-notice.html">Legal notice</a>
|
||||
<a href="/en/privacy.html">Privacy policy</a>
|
||||
<a href="#" id="cookie-settings-link">Cookie settings</a>
|
||||
</div>
|
||||
</div>
|
||||
<p class="footer-copyright">© <span id="footer-year">2026</span> AegisSight UG (haftungsbeschränkt). All rights reserved.</p>
|
||||
</div>
|
||||
</footer>
|
||||
<script>document.getElementById('footer-year').textContent=new Date().getFullYear();</script>
|
||||
<script src="/js/app.js"></script>
|
||||
<script src="/cookie-consent.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
302
en/privacy.html
Normale Datei
302
en/privacy.html
Normale Datei
@@ -0,0 +1,302 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Privacy policy – AegisSight</title>
|
||||
|
||||
<!-- Exclude legal pages from search engines -->
|
||||
<meta name="robots" content="noindex, nofollow, noarchive, nosnippet, noimageindex">
|
||||
<meta name="googlebot" content="noindex, nofollow, noarchive, nosnippet, noimageindex">
|
||||
|
||||
<link rel="alternate" hreflang="de" href="https://aegis-sight.de/datenschutz.html">
|
||||
<link rel="alternate" hreflang="en" href="https://aegis-sight.de/en/privacy.html">
|
||||
<link rel="alternate" hreflang="x-default" href="https://aegis-sight.de/datenschutz.html">
|
||||
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="apple-touch-icon" href="/assets/images/logos/AegisSightLogo_NavyGold.svg">
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/lang-switcher.css">
|
||||
<link rel="stylesheet" href="/cookie-consent.css">
|
||||
<style>
|
||||
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--white); margin: 0; }
|
||||
.legal-page { padding: calc(var(--nav-height) + 56px) 0 80px; min-height: calc(100vh - 220px); }
|
||||
.legal-container { max-width: 820px; margin: 0 auto; padding: 0 24px; }
|
||||
.legal-container h1 { font-size: 2.25rem; font-weight: 700; color: var(--navy); margin: 0 0 12px; }
|
||||
.legal-meta { color: var(--text-light); margin: 0 0 32px; font-size: 0.95rem; }
|
||||
.legal-content { background: var(--base); border-radius: var(--radius-lg); padding: 32px 40px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
|
||||
.legal-section { margin-bottom: 28px; }
|
||||
.legal-section:last-child { margin-bottom: 0; }
|
||||
.legal-section h2 { font-size: 1.35rem; font-weight: 700; color: var(--navy); margin: 0 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
|
||||
.legal-section h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin: 22px 0 8px; }
|
||||
.legal-section p { margin: 0 0 12px; line-height: 1.7; color: var(--text); font-size: 0.95rem; }
|
||||
.legal-section a { color: var(--gold-dark); text-decoration: underline; }
|
||||
.legal-section a:hover { color: var(--gold); }
|
||||
.legal-section ul { margin: 12px 0 16px 22px; padding: 0; }
|
||||
.legal-section li { margin-bottom: 6px; line-height: 1.6; color: var(--text); font-size: 0.95rem; }
|
||||
.legal-section strong { color: var(--navy); font-weight: 600; }
|
||||
.legal-section table { width: 100%; border-collapse: collapse; margin: 12px 0 16px; }
|
||||
.legal-section td, .legal-section th { padding: 8px 12px; border: 1px solid var(--gray-200); text-align: left; font-size: 0.92rem; }
|
||||
.source-note { margin-top: 40px; padding-top: 16px; border-top: 1px solid var(--gray-200); font-size: 0.85rem; color: var(--text-light); }
|
||||
.source-note a { color: var(--gold-dark); }
|
||||
.translation-note { margin: 0 0 32px; padding: 14px 18px; background: rgba(200, 168, 81, 0.08); border-left: 3px solid var(--gold); font-size: 0.92rem; color: var(--text); line-height: 1.6; }
|
||||
@media (max-width: 768px) {
|
||||
.legal-container { padding: 0 16px; }
|
||||
.legal-content { padding: 24px 20px; }
|
||||
.legal-container h1 { font-size: 1.75rem; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar" id="navbar">
|
||||
<div class="nav-container">
|
||||
<a href="/en/" class="nav-logo">
|
||||
<img src="/assets/images/logos/Logo+Schrift_Rechts.png" alt="AegisSight" class="logo-img">
|
||||
</a>
|
||||
<ul class="nav-menu">
|
||||
<li><a href="/en/#features">Features</a></li>
|
||||
<li><a href="/en/#demos">Live Reports</a></li>
|
||||
<li><a href="/en/#trust">About Us</a></li>
|
||||
<li><a href="/en/#contact">Contact</a></li>
|
||||
</ul>
|
||||
<div class="nav-extras">
|
||||
<div class="lang-switcher" role="group" aria-label="Language">
|
||||
<a class="lang-link" href="/datenschutz.html" lang="de" hreflang="de" rel="alternate">DE</a>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<span class="lang-active" lang="en" aria-current="true">EN</span>
|
||||
</div>
|
||||
<button class="mobile-menu-toggle" aria-label="Open menu" aria-expanded="false">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Mobile Menu -->
|
||||
<div class="mobile-menu" id="mobile-menu" aria-hidden="true">
|
||||
<ul>
|
||||
<li><a href="/en/#features">Features</a></li>
|
||||
<li><a href="/en/#demos">Live Reports</a></li>
|
||||
<li><a href="/en/#trust">About Us</a></li>
|
||||
<li><a href="/en/#contact">Contact</a></li>
|
||||
</ul>
|
||||
<div class="lang-switcher" role="group" aria-label="Language">
|
||||
<a class="lang-link" href="/datenschutz.html" lang="de" hreflang="de" rel="alternate">DE</a>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<span class="lang-active" lang="en" aria-current="true">EN</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mobile-overlay" id="mobile-overlay"></div>
|
||||
|
||||
<main class="legal-page">
|
||||
<div class="legal-container">
|
||||
<h1>Privacy policy</h1>
|
||||
<p class="translation-note">This is a translation of our German privacy policy provided for convenience. In the event of any conflict, the <a href="/datenschutz.html">German version</a> shall prevail.</p>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>1. Privacy at a glance</h2>
|
||||
|
||||
<h3>General information</h3>
|
||||
<p>The following notes provide a simple overview of what happens to your personal data when you visit this website. Personal data is any data with which you can be personally identified. For detailed information on data protection, please refer to our privacy policy listed below this text.</p>
|
||||
|
||||
<h3>Data collection on this website</h3>
|
||||
<p><strong>Who is responsible for the data collection on this website?</strong></p>
|
||||
<p>Data processing on this website is carried out by the website operator. You can find their contact details in the section "Information on the responsible party" in this privacy policy.</p>
|
||||
|
||||
<p><strong>How do we collect your data?</strong></p>
|
||||
<p>Your data is collected, on the one hand, when you provide it to us. This may, for example, be data that you enter into a contact form.</p>
|
||||
<p>Other data is collected automatically or after your consent when you visit the website by our IT systems. This is primarily technical data (e.g. internet browser, operating system, or time of page access). This data is collected automatically as soon as you enter this website.</p>
|
||||
|
||||
<p><strong>What do we use your data for?</strong></p>
|
||||
<p>Part of the data is collected to ensure error-free provision of the website. Other data may be used to analyse your user behaviour. If contracts can be concluded or initiated via the website, the transmitted data is also processed for contract offers, orders, or other order requests.</p>
|
||||
|
||||
<p><strong>What rights do you have regarding your data?</strong></p>
|
||||
<p>You have the right at any time to receive information free of charge about the origin, recipients, and purpose of your stored personal data. You also have the right to request the correction or deletion of this data. If you have given consent to data processing, you can revoke this consent at any time for the future. Furthermore, you have the right to demand the restriction of the processing of your personal data under certain circumstances. You also have the right to lodge a complaint with the competent supervisory authority.</p>
|
||||
<p>You may contact us at any time regarding this and other questions on the subject of data protection.</p>
|
||||
|
||||
<h3>Analysis tools and tools from third-party providers</h3>
|
||||
<p>When you visit this website, your browsing behaviour can be statistically evaluated. This is mainly done with so-called analysis programs.</p>
|
||||
<p>Detailed information on these analysis programs can be found in the following privacy policy.</p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>2. Hosting</h2>
|
||||
<p>We host the content of our website with the following provider:</p>
|
||||
|
||||
<h3>Hetzner</h3>
|
||||
<p>The provider is Hetzner Online GmbH, Industriestr. 25, 91710 Gunzenhausen, Germany (hereinafter: Hetzner).</p>
|
||||
<p>For details, please refer to Hetzner's privacy policy: <a href="https://www.hetzner.com/legal/privacy-policy/" target="_blank" rel="noopener">https://www.hetzner.com/legal/privacy-policy/</a>.</p>
|
||||
<p>The use of Hetzner is based on Art. 6 (1) (f) GDPR. We have a legitimate interest in the most reliable presentation possible of our website. Where appropriate consent has been requested, processing is carried out exclusively on the basis of Art. 6 (1) (a) GDPR and § 25 (1) TDDDG (German Digital Services Data Protection Act), where consent includes the storage of cookies or access to information on the user's terminal device (e.g. device fingerprinting) within the meaning of the TDDDG. Consent can be revoked at any time.</p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>3. General information and mandatory disclosures</h2>
|
||||
|
||||
<h3>Data protection</h3>
|
||||
<p>The operators of these pages take the protection of your personal data very seriously. We treat your personal data confidentially and in accordance with the statutory data protection regulations and this privacy policy.</p>
|
||||
<p>When you use this website, various personal data is collected. Personal data is data with which you can be personally identified. This privacy policy explains what data we collect and what we use it for. It also explains how and for what purpose this is done.</p>
|
||||
<p>We point out that data transmission on the internet (e.g. when communicating by email) can have security gaps. Complete protection of data against access by third parties is not possible.</p>
|
||||
|
||||
<h3>Information on the responsible party</h3>
|
||||
<p>The party responsible for data processing on this website is:</p>
|
||||
<p>
|
||||
<strong>AegisSight UG (haftungsbeschränkt)</strong><br>
|
||||
Gladbacher Strasse 3-5<br>
|
||||
40764 Langenfeld<br>
|
||||
Germany<br><br>
|
||||
Email: info@aegis-sight.de
|
||||
</p>
|
||||
<p>The responsible party is the natural or legal person who, alone or jointly with others, decides on the purposes and means of processing personal data (e.g. names, email addresses, etc.).</p>
|
||||
|
||||
<h3>Retention period</h3>
|
||||
<p>Unless a more specific retention period has been mentioned within this privacy policy, your personal data will remain with us until the purpose of the data processing no longer applies. If you assert a justified request for deletion or revoke your consent to data processing, your data will be deleted unless we have other legally permissible reasons for storing your personal data (e.g. tax or commercial retention periods); in the latter case, deletion will take place after these reasons no longer apply.</p>
|
||||
|
||||
<h3>General information on the legal bases for data processing on this website</h3>
|
||||
<p>If you have consented to the data processing, we process your personal data on the basis of Art. 6 (1) (a) GDPR or Art. 9 (2) (a) GDPR, if special categories of data are processed in accordance with Art. 9 (1) GDPR. In the event of express consent to the transfer of personal data to third countries, data processing is also carried out on the basis of Art. 49 (1) (a) GDPR. If you have consented to the storage of cookies or access to information on your terminal device (e.g. via device fingerprinting), the data processing is additionally based on § 25 (1) TDDDG. Consent can be revoked at any time. If your data is required for contract performance or pre-contractual measures, we process your data on the basis of Art. 6 (1) (b) GDPR. Furthermore, we process your data if necessary to comply with a legal obligation on the basis of Art. 6 (1) (c) GDPR. Data processing may further be carried out on the basis of our legitimate interest pursuant to Art. 6 (1) (f) GDPR. The respective legal bases applicable in individual cases are explained in the following paragraphs of this privacy policy.</p>
|
||||
|
||||
<h3>Recipients of personal data</h3>
|
||||
<p>In the course of our business activities, we work with various external bodies. In some cases, this also requires the transfer of personal data to these external bodies. We only pass on personal data to external bodies if this is necessary in the context of fulfilling a contract, if we are legally obliged to do so (e.g. transfer of data to tax authorities), if we have a legitimate interest pursuant to Art. 6 (1) (f) GDPR in the transfer, or if another legal basis permits the data transfer. When using processors, we only pass on the personal data of our customers on the basis of a valid contract on commissioned processing. In the case of joint processing, a joint processing contract is concluded.</p>
|
||||
|
||||
<h3>Withdrawal of your consent to data processing</h3>
|
||||
<p>Many data processing operations are only possible with your express consent. You can revoke consent that has already been given at any time. The lawfulness of data processing carried out until the revocation remains unaffected by the revocation.</p>
|
||||
|
||||
<h3>Right to object to data collection in special cases and to direct marketing (Art. 21 GDPR)</h3>
|
||||
<div class="important-notice">
|
||||
<p><strong>IF DATA PROCESSING IS CARRIED OUT ON THE BASIS OF ART. 6 (1) (E) OR (F) GDPR, YOU HAVE THE RIGHT AT ANY TIME TO OBJECT TO THE PROCESSING OF YOUR PERSONAL DATA ON GROUNDS RELATING TO YOUR PARTICULAR SITUATION; THIS ALSO APPLIES TO PROFILING BASED ON THESE PROVISIONS. THE RESPECTIVE LEGAL BASIS ON WHICH PROCESSING IS BASED CAN BE FOUND IN THIS PRIVACY POLICY. IF YOU OBJECT, WE WILL NO LONGER PROCESS YOUR PERSONAL DATA CONCERNED UNLESS WE CAN DEMONSTRATE COMPELLING LEGITIMATE GROUNDS FOR THE PROCESSING WHICH OVERRIDE YOUR INTERESTS, RIGHTS, AND FREEDOMS, OR THE PROCESSING SERVES TO ASSERT, EXERCISE, OR DEFEND LEGAL CLAIMS (OBJECTION PURSUANT TO ART. 21 (1) GDPR).</strong></p>
|
||||
<p><strong>IF YOUR PERSONAL DATA IS PROCESSED FOR DIRECT MARKETING PURPOSES, YOU HAVE THE RIGHT TO OBJECT AT ANY TIME TO THE PROCESSING OF PERSONAL DATA CONCERNING YOU FOR THE PURPOSE OF SUCH MARKETING; THIS ALSO APPLIES TO PROFILING IN SO FAR AS IT IS RELATED TO SUCH DIRECT MARKETING. IF YOU OBJECT, YOUR PERSONAL DATA WILL SUBSEQUENTLY NO LONGER BE USED FOR DIRECT MARKETING PURPOSES (OBJECTION PURSUANT TO ART. 21 (2) GDPR).</strong></p>
|
||||
</div>
|
||||
|
||||
<h3>Right of appeal to the competent supervisory authority</h3>
|
||||
<p>In the event of breaches of the GDPR, data subjects have the right to lodge a complaint with a supervisory authority, in particular in the member state of their habitual residence, their place of work, or the place of the alleged breach. The right of appeal is without prejudice to other administrative or judicial remedies.</p>
|
||||
|
||||
<h3>Right to data portability</h3>
|
||||
<p>You have the right to have data that we process automatically on the basis of your consent or in fulfilment of a contract handed over to you or to a third party in a common, machine-readable format. If you request the direct transfer of the data to another responsible party, this will only be done if technically feasible.</p>
|
||||
|
||||
<h3>Right to information, correction, and deletion</h3>
|
||||
<p>Within the framework of the applicable legal provisions, you have the right at any time to free information about your stored personal data, its origin and recipients, and the purpose of data processing and, if necessary, the right to have this data corrected or deleted. You can contact us at any time regarding this and other questions on the subject of personal data.</p>
|
||||
|
||||
<h3>Right to restriction of processing</h3>
|
||||
<p>You have the right to demand the restriction of the processing of your personal data. You can contact us at any time about this. The right to restriction of processing exists in the following cases:</p>
|
||||
<ul>
|
||||
<li>If you contest the accuracy of your personal data stored by us, we usually need time to verify this. For the duration of the verification, you have the right to demand the restriction of the processing of your personal data.</li>
|
||||
<li>If the processing of your personal data took place / is taking place unlawfully, you can demand the restriction of data processing instead of deletion.</li>
|
||||
<li>If we no longer need your personal data but you require it to assert, defend, or exercise legal claims, you have the right to demand the restriction of the processing of your personal data instead of deletion.</li>
|
||||
<li>If you have lodged an objection pursuant to Art. 21 (1) GDPR, a balance must be struck between your interests and ours. As long as it has not yet been determined whose interests prevail, you have the right to demand the restriction of the processing of your personal data.</li>
|
||||
</ul>
|
||||
<p>If you have restricted the processing of your personal data, this data – apart from its storage – may only be processed with your consent or to assert, exercise, or defend legal claims, or to protect the rights of another natural or legal person, or for reasons of important public interest of the European Union or of a member state.</p>
|
||||
|
||||
<h3>SSL or TLS encryption</h3>
|
||||
<p>For security reasons and to protect the transmission of confidential content, such as orders or enquiries that you send to us as the site operator, this site uses SSL or TLS encryption. You can recognise an encrypted connection by the fact that the address bar of the browser changes from "http://" to "https://" and by the lock symbol in your browser bar.</p>
|
||||
<p>If SSL or TLS encryption is activated, the data you transmit to us cannot be read by third parties.</p>
|
||||
|
||||
<h3>Objection to promotional emails</h3>
|
||||
<p>The use of contact data published in the context of the legal notice obligation to send unsolicited advertising and information material is hereby objected to. The operators of the pages expressly reserve the right to take legal action in the event of unsolicited sending of advertising information, e.g. through spam emails.</p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>4. Data collection on this website</h2>
|
||||
|
||||
<h3>Cookies</h3>
|
||||
<p>Our websites use so-called "cookies". Cookies are small data packages and do not cause any damage to your terminal device. They are stored either temporarily for the duration of a session (session cookies) or permanently (permanent cookies) on your terminal device. Session cookies are automatically deleted at the end of your visit. Permanent cookies remain stored on your terminal device until you delete them yourself or until your web browser automatically deletes them.</p>
|
||||
<p>Cookies can come from us (first-party cookies) or from third-party companies (so-called third-party cookies). Third-party cookies enable the integration of certain services from third-party companies within websites (e.g. cookies for handling payment services).</p>
|
||||
<p>Cookies have various functions. Numerous cookies are technically necessary, since certain website functions would not work without them (e.g. the shopping cart function or the display of videos). Other cookies can be used to evaluate user behaviour or for advertising purposes.</p>
|
||||
<p>Cookies that are required to carry out the electronic communication process, to provide certain functions you have requested (e.g. for the shopping cart function), or to optimise the website (e.g. cookies for measuring the web audience) are stored on the basis of Art. 6 (1) (f) GDPR (necessary cookies), unless another legal basis is specified. The website operator has a legitimate interest in storing necessary cookies for the technically error-free and optimised provision of its services. Where consent to the storage of cookies and comparable recognition technologies has been requested, processing is carried out exclusively on the basis of this consent (Art. 6 (1) (a) GDPR and § 25 (1) TDDDG); consent can be revoked at any time.</p>
|
||||
<p>You can set your browser so that you are informed about the setting of cookies and only allow cookies in individual cases, exclude the acceptance of cookies for certain cases or in general, and activate the automatic deletion of cookies when closing the browser. If cookies are deactivated, the functionality of this website may be limited.</p>
|
||||
<p>Which cookies and services are used on this website can be found in this privacy policy.</p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>5. Contact form and enquiries</h2>
|
||||
|
||||
<h3>Data collection via the contact form</h3>
|
||||
<p>If you send us an enquiry via the contact form provided on our website, the information you provide in the form, including the contact details you provide, will be stored by us for the purpose of processing the enquiry and in case of follow-up questions. The following data is collected: name, organisation (optional), email address, and your message. Your data will not be passed on to third parties.</p>
|
||||
|
||||
<h3>Legal basis</h3>
|
||||
<p>The processing of this data is based on Art. 6 (1) (b) GDPR if your enquiry is related to the performance of a contract or is necessary for the implementation of pre-contractual measures. In all other cases, the processing is based on our legitimate interest in the effective handling of enquiries addressed to us (Art. 6 (1) (f) GDPR) and/or on your consent (Art. 6 (1) (a) GDPR), where this has been requested; the consent can be revoked at any time.</p>
|
||||
|
||||
<h3>Retention period</h3>
|
||||
<p>The data you enter in the contact form will remain with us until you ask us to delete it, revoke your consent to its storage, or the purpose for storing the data no longer applies (e.g. after your enquiry has been processed). Mandatory legal provisions – in particular retention periods – remain unaffected.</p>
|
||||
|
||||
<h3>Transmission</h3>
|
||||
<p>Your enquiry is transmitted encrypted (TLS) to our server and forwarded from there as an email to info@aegis-sight.de. Email transmission is encrypted via mail servers in Germany (IONOS).</p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>6. Newsletter</h2>
|
||||
|
||||
<h3>Newsletter data</h3>
|
||||
<p>If you would like to receive the newsletter offered on the website, we require an email address from you as well as information that allows us to verify that you are the owner of the email address provided and that you agree to receive the newsletter. No further data, or only data on a voluntary basis, will be collected. We use this data exclusively for sending the requested information and do not pass it on to third parties.</p>
|
||||
<p>The processing of the data entered in the newsletter registration form is carried out exclusively on the basis of your consent (Art. 6 (1) (a) GDPR). You can revoke your consent to the storage of the data, the email address, and its use for sending the newsletter at any time, for example via the "unsubscribe" link in the newsletter. The lawfulness of the data processing operations already carried out remains unaffected by the revocation.</p>
|
||||
<p>The data you provide for the purpose of receiving the newsletter is stored by us or by the newsletter service provider until you unsubscribe from the newsletter and is deleted from the newsletter distribution list after you unsubscribe from the newsletter or once the purpose no longer applies. We reserve the right to delete or block email addresses from our newsletter distribution list at our discretion within the scope of our legitimate interest pursuant to Art. 6 (1) (f) GDPR.</p>
|
||||
<p>Data stored by us for other purposes remains unaffected by this.</p>
|
||||
<p>After you have unsubscribed from the newsletter distribution list, your email address may be stored by us or by the newsletter service provider in a blacklist if necessary to prevent future mailings. The data from the blacklist will only be used for this purpose and will not be merged with other data. This serves both your interest and our interest in complying with the legal requirements when sending newsletters (legitimate interest within the meaning of Art. 6 (1) (f) GDPR). Storage in the blacklist is not subject to any time limit. <strong>You can object to the storage if your interests outweigh our legitimate interest.</strong></p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>7. Plugins and tools</h2>
|
||||
|
||||
<h3>AegisSight Analytics (Umami)</h3>
|
||||
<p>We use AegisSight Analytics on this website, a self-hosted instance of the open-source analysis software Umami. With Umami, we collect anonymised information about the use of our website (e.g. pages visited, browser, approximate geographical region at country level) to improve our content.</p>
|
||||
<p><strong>Self-hosted in Germany:</strong> All data remains on our server in Nuremberg, Germany (hosting: Hetzner). No transfer to third parties takes place.</p>
|
||||
<p><strong>Cookieless and IP-anonymised:</strong> Umami does not set cookies and does not store any personal data. IP addresses are anonymised before storage (hashing). No cross-site tracking takes place.</p>
|
||||
<p><strong>Legal basis and consent:</strong> Reach measurement is only activated after your consent via our cookie consent banner (Art. 6 (1) (a) GDPR in conjunction with § 25 (1) TDDDG). You can revoke your consent at any time via the footer link "Cookie settings". We respect the "Global Privacy Control" (GPC) signal of your browser and automatically deactivate reach measurement in this case.</p>
|
||||
|
||||
<h3>Google Fonts (local hosting)</h3>
|
||||
<p>This site uses so-called Google Fonts provided by Google for the uniform display of fonts. The Google Fonts are installed locally. A connection to Google servers does not take place.</p>
|
||||
<p>Further information on Google Fonts can be found at <a href="https://developers.google.com/fonts/faq" target="_blank" rel="noopener">https://developers.google.com/fonts/faq</a> and in Google's privacy policy: <a href="https://policies.google.com/privacy?hl=en" target="_blank" rel="noopener">https://policies.google.com/privacy?hl=en</a>.</p>
|
||||
</div>
|
||||
|
||||
<div class="legal-section">
|
||||
<h2>8. Automated access and AI agents</h2>
|
||||
|
||||
<h3>Prohibition of automated access</h3>
|
||||
<p>Automated querying, scraping, or crawling of this website by bots, spiders, scrapers, AI agents (including LLM-based systems), "buy-for-me" agents, or similar automated tools is prohibited without our express written permission.</p>
|
||||
|
||||
<p>This applies in particular to:</p>
|
||||
<ul>
|
||||
<li>Automated data collection and extraction</li>
|
||||
<li>Training of AI models with content from this website</li>
|
||||
<li>Automated end-to-end processes without human review</li>
|
||||
<li>Systematic reading of content by automated systems</li>
|
||||
</ul>
|
||||
|
||||
<p>Violations of this provision may be prosecuted under civil and criminal law. The instructions contained in our robots.txt file are binding and form part of these terms of use.</p>
|
||||
|
||||
<h3>Exceptions</h3>
|
||||
<p>Search engine crawlers that comply with the specifications of our robots.txt are exempt from this prohibition, as are services to which we have expressly granted permission.</p>
|
||||
</div>
|
||||
|
||||
<div class="source-note">
|
||||
<p>Source: <a href="https://www.e-recht24.de" target="_blank" rel="noopener">https://www.e-recht24.de</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-content">
|
||||
<div class="footer-info">
|
||||
<p class="footer-company">AegisSight UG (haftungsbeschränkt)</p>
|
||||
<p>Gladbacher Straße 3-5, 40764 Langenfeld, Germany</p>
|
||||
</div>
|
||||
<div class="footer-links">
|
||||
<a href="/en/legal-notice.html">Legal notice</a>
|
||||
<a href="/en/privacy.html">Privacy policy</a>
|
||||
<a href="#" id="cookie-settings-link">Cookie settings</a>
|
||||
</div>
|
||||
</div>
|
||||
<p class="footer-copyright">© <span id="footer-year">2026</span> AegisSight UG (haftungsbeschränkt). All rights reserved.</p>
|
||||
</div>
|
||||
</footer>
|
||||
<script>document.getElementById('footer-year').textContent=new Date().getFullYear();</script>
|
||||
<script src="/js/app.js"></script>
|
||||
<script src="/cookie-consent.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -9,6 +9,10 @@
|
||||
<meta name="robots" content="noindex, nofollow, noarchive, nosnippet, noimageindex">
|
||||
<meta name="googlebot" content="noindex, nofollow, noarchive, nosnippet, noimageindex">
|
||||
|
||||
<link rel="alternate" hreflang="de" href="https://aegis-sight.de/impressum.html">
|
||||
<link rel="alternate" hreflang="en" href="https://aegis-sight.de/en/legal-notice.html">
|
||||
<link rel="alternate" hreflang="x-default" href="https://aegis-sight.de/impressum.html">
|
||||
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="apple-touch-icon" href="/assets/images/logos/AegisSightLogo_NavyGold.svg">
|
||||
|
||||
@@ -17,6 +21,7 @@
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/lang-switcher.css">
|
||||
<link rel="stylesheet" href="/cookie-consent.css">
|
||||
<style>
|
||||
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--white); margin: 0; }
|
||||
@@ -59,9 +64,16 @@
|
||||
<li><a href="/#trust">Über uns</a></li>
|
||||
<li><a href="/#contact">Kontakt</a></li>
|
||||
</ul>
|
||||
<button class="mobile-menu-toggle" aria-label="Menü öffnen" aria-expanded="false">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
<div class="nav-extras">
|
||||
<div class="lang-switcher" role="group" aria-label="Sprache">
|
||||
<span class="lang-active" lang="de" aria-current="true">DE</span>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<a class="lang-link" href="/en/legal-notice.html" lang="en" hreflang="en" rel="alternate">EN</a>
|
||||
</div>
|
||||
<button class="mobile-menu-toggle" aria-label="Menü öffnen" aria-expanded="false">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
@@ -73,6 +85,11 @@
|
||||
<li><a href="/#trust">Über uns</a></li>
|
||||
<li><a href="/#contact">Kontakt</a></li>
|
||||
</ul>
|
||||
<div class="lang-switcher" role="group" aria-label="Sprache">
|
||||
<span class="lang-active" lang="de" aria-current="true">DE</span>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<a class="lang-link" href="/en/legal-notice.html" lang="en" hreflang="en" rel="alternate">EN</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mobile-overlay" id="mobile-overlay"></div>
|
||||
|
||||
|
||||
23
index.html
23
index.html
@@ -7,6 +7,9 @@
|
||||
<meta name="description" content="OSINT-Monitoring Software aus Deutschland: KI-gestützte Echtzeit-Lagebilder aus offenen Quellen. Für Behörden, Redaktionen und Sicherheitsdienste.">
|
||||
<meta name="robots" content="noindex, nofollow, noarchive">
|
||||
<link rel="canonical" href="https://aegis-sight.de/">
|
||||
<link rel="alternate" hreflang="de" href="https://aegis-sight.de/">
|
||||
<link rel="alternate" hreflang="en" href="https://aegis-sight.de/en/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://aegis-sight.de/">
|
||||
|
||||
<!-- Open Graph / Social Sharing -->
|
||||
<meta property="og:type" content="website">
|
||||
@@ -18,6 +21,7 @@
|
||||
<meta property="og:image:width" content="1200">
|
||||
<meta property="og:image:height" content="630">
|
||||
<meta property="og:locale" content="de_DE">
|
||||
<meta property="og:locale:alternate" content="en_GB">
|
||||
|
||||
<!-- Twitter Card -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
@@ -52,6 +56,7 @@
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.5.3/dist/MarkerCluster.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.5.3/dist/MarkerCluster.Default.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="/css/lang-switcher.css">
|
||||
<link rel="stylesheet" href="/cookie-consent.css">
|
||||
</head>
|
||||
<body>
|
||||
@@ -68,9 +73,16 @@
|
||||
<li><a href="#trust">Über uns</a></li>
|
||||
<li><a href="#contact">Kontakt</a></li>
|
||||
</ul>
|
||||
<button class="mobile-menu-toggle" aria-label="Menü öffnen" aria-expanded="false">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
<div class="nav-extras">
|
||||
<div class="lang-switcher" role="group" aria-label="Sprache">
|
||||
<span class="lang-active" lang="de" aria-current="true">DE</span>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<a class="lang-link" href="/en/" lang="en" hreflang="en" rel="alternate">EN</a>
|
||||
</div>
|
||||
<button class="mobile-menu-toggle" aria-label="Menü öffnen" aria-expanded="false">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
@@ -82,6 +94,11 @@
|
||||
<li><a href="#trust">Über uns</a></li>
|
||||
<li><a href="#contact">Kontakt</a></li>
|
||||
</ul>
|
||||
<div class="lang-switcher" role="group" aria-label="Sprache">
|
||||
<span class="lang-active" lang="de" aria-current="true">DE</span>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<a class="lang-link" href="/en/" lang="en" hreflang="en" rel="alternate">EN</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mobile-overlay" id="mobile-overlay"></div>
|
||||
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
<link rel="stylesheet" href="/css/main.css">
|
||||
<link rel="stylesheet" href="/css/fonts.css">
|
||||
<link rel="stylesheet" href="/css/mobile.css">
|
||||
<link rel="stylesheet" href="/css/lang-switcher.css">
|
||||
<link rel="stylesheet" href="/lagen/iran-konflikt/lagebild.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.5.3/dist/MarkerCluster.css">
|
||||
@@ -29,7 +30,11 @@
|
||||
<li><a href="mailto:info@aegis-sight.de" data-translate="navContact">Kontakt</a></li>
|
||||
</ul>
|
||||
<div class="nav-extras">
|
||||
<button class="lang-toggle" data-lang="de" aria-label="Sprache wechseln" data-translate="langSwitch">DE | EN</button>
|
||||
<div class="lang-switcher" role="group" aria-label="Sprache">
|
||||
<span class="lang-active" lang="de" aria-current="true">DE</span>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<a class="lang-link" href="/en/" lang="en" hreflang="en" rel="alternate">EN</a>
|
||||
</div>
|
||||
<button class="mobile-menu-toggle" aria-label="Menü öffnen" aria-expanded="false">
|
||||
<span class="hamburger"><span></span><span></span><span></span></span>
|
||||
</button>
|
||||
@@ -46,6 +51,11 @@
|
||||
<li><a href="/#products" data-translate="navProducts">Lösungen</a></li>
|
||||
<li><a href="mailto:info@aegis-sight.de" data-translate="navContact">Kontakt</a></li>
|
||||
</ul>
|
||||
<div class="lang-switcher" role="group" aria-label="Sprache">
|
||||
<span class="lang-active" lang="de" aria-current="true">DE</span>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<a class="lang-link" href="/en/" lang="en" hreflang="en" rel="alternate">EN</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mobile-menu-overlay"></div>
|
||||
<section class="lagebild-hero">
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
<link rel="stylesheet" href="/css/main.css">
|
||||
<link rel="stylesheet" href="/css/fonts.css">
|
||||
<link rel="stylesheet" href="/css/mobile.css">
|
||||
<link rel="stylesheet" href="/css/lang-switcher.css">
|
||||
<link rel="stylesheet" href="/lagen/iran-konflikt/lagebild.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.5.3/dist/MarkerCluster.css">
|
||||
@@ -32,7 +33,11 @@
|
||||
<li><a href="mailto:info@aegis-sight.de" data-translate="navContact">Kontakt</a></li>
|
||||
</ul>
|
||||
<div class="nav-extras">
|
||||
<button class="lang-toggle" data-lang="de" aria-label="Sprache wechseln" data-translate="langSwitch">DE | EN</button>
|
||||
<div class="lang-switcher" role="group" aria-label="Sprache">
|
||||
<span class="lang-active" lang="de" aria-current="true">DE</span>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<a class="lang-link" href="/en/" lang="en" hreflang="en" rel="alternate">EN</a>
|
||||
</div>
|
||||
<button class="mobile-menu-toggle" aria-label="Menü öffnen" aria-expanded="false">
|
||||
<span class="hamburger"><span></span><span></span><span></span></span>
|
||||
</button>
|
||||
@@ -51,6 +56,11 @@
|
||||
<li><a href="/#products" data-translate="navProducts">Lösungen</a></li>
|
||||
<li><a href="mailto:info@aegis-sight.de" data-translate="navContact">Kontakt</a></li>
|
||||
</ul>
|
||||
<div class="lang-switcher" role="group" aria-label="Sprache">
|
||||
<span class="lang-active" lang="de" aria-current="true">DE</span>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<a class="lang-link" href="/en/" lang="en" hreflang="en" rel="alternate">EN</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mobile-menu-overlay"></div>
|
||||
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
<link rel="stylesheet" href="/css/main.css">
|
||||
<link rel="stylesheet" href="/css/fonts.css">
|
||||
<link rel="stylesheet" href="/css/mobile.css">
|
||||
<link rel="stylesheet" href="/css/lang-switcher.css">
|
||||
<link rel="stylesheet" href="lagebild.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.5.3/dist/MarkerCluster.css">
|
||||
@@ -32,7 +33,11 @@
|
||||
<li><a href="mailto:info@aegis-sight.de" data-translate="navContact">Kontakt</a></li>
|
||||
</ul>
|
||||
<div class="nav-extras">
|
||||
<button class="lang-toggle" data-lang="de" aria-label="Sprache wechseln" data-translate="langSwitch">DE | EN</button>
|
||||
<div class="lang-switcher" role="group" aria-label="Sprache">
|
||||
<span class="lang-active" lang="de" aria-current="true">DE</span>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<a class="lang-link" href="/en/" lang="en" hreflang="en" rel="alternate">EN</a>
|
||||
</div>
|
||||
<button class="mobile-menu-toggle" aria-label="Menü öffnen" aria-expanded="false">
|
||||
<span class="hamburger"><span></span><span></span><span></span></span>
|
||||
</button>
|
||||
@@ -51,6 +56,11 @@
|
||||
<li><a href="/#products" data-translate="navProducts">Lösungen</a></li>
|
||||
<li><a href="mailto:info@aegis-sight.de" data-translate="navContact">Kontakt</a></li>
|
||||
</ul>
|
||||
<div class="lang-switcher" role="group" aria-label="Sprache">
|
||||
<span class="lang-active" lang="de" aria-current="true">DE</span>
|
||||
<span class="lang-sep" aria-hidden="true">|</span>
|
||||
<a class="lang-link" href="/en/" lang="en" hreflang="en" rel="alternate">EN</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mobile-menu-overlay"></div>
|
||||
|
||||
|
||||
@@ -1,9 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
<url>
|
||||
<loc>https://aegis-sight.de/</loc>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>1.0</priority>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://aegis-sight.de/"/>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://aegis-sight.de/en/"/>
|
||||
<xhtml:link rel="alternate" hreflang="x-default" href="https://aegis-sight.de/"/>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://aegis-sight.de/en/</loc>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>1.0</priority>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://aegis-sight.de/"/>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://aegis-sight.de/en/"/>
|
||||
<xhtml:link rel="alternate" hreflang="x-default" href="https://aegis-sight.de/"/>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://aegis-sight.de/lagen/iran-konflikt/</loc>
|
||||
@@ -24,10 +36,32 @@
|
||||
<loc>https://aegis-sight.de/impressum.html</loc>
|
||||
<changefreq>yearly</changefreq>
|
||||
<priority>0.3</priority>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://aegis-sight.de/impressum.html"/>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://aegis-sight.de/en/legal-notice.html"/>
|
||||
<xhtml:link rel="alternate" hreflang="x-default" href="https://aegis-sight.de/impressum.html"/>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://aegis-sight.de/en/legal-notice.html</loc>
|
||||
<changefreq>yearly</changefreq>
|
||||
<priority>0.3</priority>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://aegis-sight.de/impressum.html"/>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://aegis-sight.de/en/legal-notice.html"/>
|
||||
<xhtml:link rel="alternate" hreflang="x-default" href="https://aegis-sight.de/impressum.html"/>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://aegis-sight.de/datenschutz.html</loc>
|
||||
<changefreq>yearly</changefreq>
|
||||
<priority>0.3</priority>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://aegis-sight.de/datenschutz.html"/>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://aegis-sight.de/en/privacy.html"/>
|
||||
<xhtml:link rel="alternate" hreflang="x-default" href="https://aegis-sight.de/datenschutz.html"/>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://aegis-sight.de/en/privacy.html</loc>
|
||||
<changefreq>yearly</changefreq>
|
||||
<priority>0.3</priority>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://aegis-sight.de/datenschutz.html"/>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://aegis-sight.de/en/privacy.html"/>
|
||||
<xhtml:link rel="alternate" hreflang="x-default" href="https://aegis-sight.de/datenschutz.html"/>
|
||||
</url>
|
||||
</urlset>
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren