343 lines
9.8 KiB
HTML
343 lines
9.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ConVo - Modern Communication</title>
|
|
<meta name="description" content="ConVo - Die moderne Kommunikationsplattform für Teams und Unternehmen.">
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" href="/favicon.png">
|
|
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:root {
|
|
--primary: #C4A06A;
|
|
--primary-dark: #a88656;
|
|
--secondary: #E86A4A;
|
|
--secondary-dark: #c45535;
|
|
--dark: #18191c;
|
|
--light: #F9FAFB;
|
|
--gray: #6B7280;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
|
|
line-height: 1.6;
|
|
color: #e5e7eb;
|
|
background: #18191c;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 2rem;
|
|
}
|
|
|
|
/* Header */
|
|
header {
|
|
padding: 1.5rem 0;
|
|
background: #5a4020;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
.logo-text {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: #e5e7eb;
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.logo img {
|
|
height: 48px;
|
|
width: auto;
|
|
}
|
|
|
|
.logo-text {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: var(--dark);
|
|
}
|
|
|
|
nav a {
|
|
color: #b9bbbe;
|
|
text-decoration: none;
|
|
margin-left: 2rem;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
nav a:hover {
|
|
color: var(--primary);
|
|
}
|
|
|
|
/* Hero */
|
|
.hero {
|
|
padding: 6rem 0;
|
|
text-align: center;
|
|
background: linear-gradient(135deg, #C4A06A 0%, #E86A4A 100%);
|
|
color: white;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 800;
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
max-width: 600px;
|
|
margin: 0 auto 2rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 1rem 2rem;
|
|
border-radius: 0.5rem;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: #E86A4A;
|
|
color: white;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: #c45535;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.btn-outline {
|
|
background: transparent;
|
|
border: 2px solid white;
|
|
color: white;
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.btn-outline:hover {
|
|
background: white;
|
|
color: var(--primary);
|
|
}
|
|
|
|
/* Features */
|
|
.features {
|
|
padding: 5rem 0;
|
|
background: #18191c;
|
|
}
|
|
|
|
.feature-card {
|
|
padding: 2rem;
|
|
border-radius: 1rem;
|
|
background: #5a4020;
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.feature-card p {
|
|
color: #b9bbbe;
|
|
}
|
|
|
|
.features h2 {
|
|
text-align: center;
|
|
font-size: 2.25rem;
|
|
margin-bottom: 3rem;
|
|
color: #e5e7eb;
|
|
}
|
|
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.feature-card {
|
|
padding: 2rem;
|
|
border-radius: 1rem;
|
|
background: #3d2814;
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
transform: translateY(-4px);
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.feature-card h3 {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.feature-card p {
|
|
color: var(--gray);
|
|
}
|
|
|
|
/* About */
|
|
.about {
|
|
padding: 5rem 0;
|
|
background: #5a4020;
|
|
}
|
|
|
|
.about h2 {
|
|
text-align: center;
|
|
font-size: 2.25rem;
|
|
margin-bottom: 2rem;
|
|
color: #e5e7eb;
|
|
}
|
|
|
|
.about-content {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.about p {
|
|
font-size: 1.125rem;
|
|
color: #b9bbbe;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.about p {
|
|
font-size: 1.125rem;
|
|
color: var(--gray);
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
padding: 2rem 0;
|
|
background: var(--dark);
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
footer p {
|
|
opacity: 0.7;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.hero h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.header-content {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
nav {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
nav a {
|
|
margin: 0 0.75rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container header-content">
|
|
<div class="logo">
|
|
<!-- Logo: Ersetze favicon.png durch dein eigenes Logo -->
|
|
<img src="logo.png" alt="ConVo Logo">
|
|
<span class="logo-text">ConVo</span>
|
|
</div>
|
|
<nav>
|
|
<a href="#features">Features</a>
|
|
<a href="#about">Über uns</a>
|
|
<a href="https://app.joinconvo.eu">Zur App</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h1>Moderne Kommunikation<br>für Teams</h1>
|
|
<p>ConVo vereint alle Kommunikationskanäle an einem Ort. chat, Video, Files — alles in einer sicheren Plattform.</p>
|
|
<a href="https://app.joinconvo.eu" class="btn btn-primary">Jetzt starten</a>
|
|
<a href="#about" class="btn btn-outline">Mehr erfahren</a>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="features" id="features">
|
|
<div class="container">
|
|
<h2 style="text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.5em;"><img src="logo.png" alt="ConVo" style="height: 12em; vertical-align: middle; background: #5a4020; padding: 0.2em; border-radius: 0.3em"></h2>
|
|
<div class="features-grid">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">💬</div>
|
|
<h3>Chat</h3>
|
|
<p>Echtzeit-Nachrichten mit Channels, Direktnachrichten und Thread-Unterhaltungen.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">📹</div>
|
|
<h3 style="text-align: left; font-size: 1.5em;">Video-Calls</h3>
|
|
<p>HD-Videokonferenzen mit Bildschirmfreigabe und Aufnahmefunktion.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">📁</div>
|
|
<h3>Files</h3>
|
|
<p>Teilen und organisieren von Dateien direkt in der Plattform.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🔒</div>
|
|
<h3>Sicher</h3>
|
|
<p>End-to-End Verschlüsselung, DSGVO-konform und in Deutschland gehostet.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">⚡</div>
|
|
<h3>Schnell</h3>
|
|
<p>Moderne Technologie für maximale Performance auf allen Geräten.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon">🔗</div>
|
|
<h3>Integrationen</h3>
|
|
<p>Verbindung mit deinen Lieblingstools und APIs für nahtlose Workflows.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="about" id="about">
|
|
<div class="container">
|
|
<h2>Über ConVo</h2>
|
|
<div class="about-content">
|
|
<p>ConVo ist eine moderne Kommunikationsplattform, die entwickelt wurde, um Teams effizienter zusammenarbeiten zu lassen.</p>
|
|
<p>Wir glauben an sichere, private und schnelle Kommunikation ohne Kompromisse. Alle Daten werden in Deutschland gehostet und unterliegen strengen Datenschutzstandards.</p>
|
|
<p>ConVo befindet sich aktuell in der Closed Beta. Interesse? <a href="mailto:kontakt@joinconvo.eu">Kontaktiere uns</a></p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<p>© 2026 ConVo. Alle Rechte vorbehalten.</p>
|
|
<p>Kontakt: <a href="mailto:kontakt@joinconvo.eu" style="color: white;">kontakt@joinconvo.eu</a></p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|