Compare commits
18 Commits
56ae17adf6
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 821f6dca20 | |||
| e4cd2f3f4f | |||
| 9735260138 | |||
| d998f90de5 | |||
| 73b53e9056 | |||
| 3421865891 | |||
| 8d9b9644f8 | |||
| b03bb909fc | |||
| 8ad57cec8d | |||
| 2177c8e274 | |||
| aef0b48cca | |||
| 4af37485a4 | |||
| 1a08ed0e30 | |||
| 91fd31fb9f | |||
| d56a6f1760 | |||
| 30bbcbb3ec | |||
| f459df3f84 | |||
| f70fd6100e |
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
|
||||
BIN
favicon.png
Normal file
BIN
favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 920 B |
342
index.html
Normal file
342
index.html
Normal file
@@ -0,0 +1,342 @@
|
||||
<!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" style="height: 40px;">
|
||||
<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>
|
||||
Reference in New Issue
Block a user