Initial commit - ConVo Website
This commit is contained in:
68
DEPLOYMENT.txt
Normal file
68
DEPLOYMENT.txt
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
# ConVo Website - Deployment Anleitung
|
||||||
|
|
||||||
|
## Dateien hochladen
|
||||||
|
|
||||||
|
### Option 1: FTP/SFTP
|
||||||
|
Verbindung zum Webspace bei alldomains.hosting:
|
||||||
|
|
||||||
|
```
|
||||||
|
Host: ftp.alldomains.hosting (oder deine Server-IP)
|
||||||
|
Benutzer: [dein Hosting-Account]
|
||||||
|
Passwort: [dein Passwort]
|
||||||
|
Port: 21 (FTP) oder 22 (SFTP)
|
||||||
|
```
|
||||||
|
|
||||||
|
**Ablauf:**
|
||||||
|
1. Verbinde dich mit einem FTP-Client (FileZilla, WinSCP, etc.)
|
||||||
|
2. Lade alle Dateien aus dem `joinconvo-website/`-Ordner in das `web/` oder `htdocs/` Verzeichnis
|
||||||
|
3. Stelle sicher, dass `index.html` im Hauptverzeichnis liegt
|
||||||
|
|
||||||
|
### Option 2: Webinterface von alldomains
|
||||||
|
1. Logge dich bei alldomains.hosting ein
|
||||||
|
2. Gehe zu "File Manager" oder "Dateiverwaltung"
|
||||||
|
3. Lade `index.html` hoch
|
||||||
|
|
||||||
|
## Dateistruktur
|
||||||
|
|
||||||
|
```
|
||||||
|
/web/ oder /htdocs/
|
||||||
|
├── index.html # Hauptseite (Pflicht)
|
||||||
|
└── favicon.png # Logo (optional, falls vorhanden)
|
||||||
|
```
|
||||||
|
|
||||||
|
## Wichtige Anpassungen
|
||||||
|
|
||||||
|
### Logo ändern
|
||||||
|
1. Ersetze `/favicon.png` durch dein eigenes Logo (PNG, quadratisch, min. 512x512px)
|
||||||
|
2. Oder ändere im HTML den Pfad: `<img src="/dein-logo.png">`
|
||||||
|
|
||||||
|
### Farben anpassen
|
||||||
|
Im `<style>` Bereich der `index.html`:
|
||||||
|
|
||||||
|
```css
|
||||||
|
:root {
|
||||||
|
--primary: #4F46E5; /* Hauptfarbe (lila-blau) */
|
||||||
|
--primary-dark: #4338ca;
|
||||||
|
--secondary: #10B981; /* Akzentfarbe (grün) */
|
||||||
|
--dark: #111827; /* Dunkel */
|
||||||
|
--light: #F9FAFB; /* Hell */
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Links anpassen
|
||||||
|
- `href="https://app.joinconvo.eu"` → Deine App-URL
|
||||||
|
- `href="mailto:kontakt@joinconvo.eu"` → Deine Kontakt-Email
|
||||||
|
|
||||||
|
## Domain konfigurieren
|
||||||
|
|
||||||
|
In alldomains.hosting:
|
||||||
|
1. Gehe zu "Domains" → "Domain-Einstellungen"
|
||||||
|
2. Setze das Document Root auf das Verzeichnis mit der `index.html`
|
||||||
|
3. Oder nutze die "Website-Datei auswählen" Option
|
||||||
|
|
||||||
|
## Test
|
||||||
|
|
||||||
|
Nach dem Upload:
|
||||||
|
1. Öffne https://joinconvo.eu
|
||||||
|
2. Prüfe ob Seite lädt
|
||||||
|
3. Prüfe Logo und Links
|
||||||
315
index.html
Normal file
315
index.html
Normal file
@@ -0,0 +1,315 @@
|
|||||||
|
<!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: #4F46E5;
|
||||||
|
--primary-dark: #4338ca;
|
||||||
|
--secondary: #10B981;
|
||||||
|
--dark: #111827;
|
||||||
|
--light: #F9FAFB;
|
||||||
|
--gray: #6B7280;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
|
||||||
|
line-height: 1.6;
|
||||||
|
color: var(--dark);
|
||||||
|
background: var(--light);
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
max-width: 1200px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 0 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Header */
|
||||||
|
header {
|
||||||
|
padding: 1.5rem 0;
|
||||||
|
background: white;
|
||||||
|
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.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: var(--gray);
|
||||||
|
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, #667eea 0%, #764ba2 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: var(--secondary);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary:hover {
|
||||||
|
background: #059669;
|
||||||
|
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: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.features h2 {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 2.25rem;
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.features-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||||
|
gap: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.feature-card {
|
||||||
|
padding: 2rem;
|
||||||
|
border-radius: 1rem;
|
||||||
|
background: var(--light);
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about h2 {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 2.25rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about-content {
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.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="/favicon.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>Warum ConVo?</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>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>
|
||||||
Reference in New Issue
Block a user