Files
Websites/sites/leads.html
2026-01-28 14:02:01 +01:00

118 lines
5.1 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profice - Leads Dashboard</title>
<link rel="stylesheet" href="../style/design.css">
<link rel="stylesheet" href="../style/leads.css">
<link rel="stylesheet" href="../style/cursor.css">
</head>
<body>
<!-- Top Banner -->
<header class="top-banner dark-theme">
<div class="top-banner-left">
<div class="banner-left">
<button class="menu-toggle" id="menuToggle" aria-label="Menu">
<span></span>
<span></span>
<span></span>
</button>
<a href="../index.html" class="logo-link">
<img src="../images/logo/logo-01-complete.png" alt="Profice Logo" class="logo">
</a>
</div>
</div>
<div class="top-banner-center">
<nav class="main-nav">
<a href="../index.html#hero-section" class="nav-link">Home</a>
<a href="../index.html#enterprise" class="nav-link">Enterprise</a>
<a href="../index.html#pricing" class="nav-link">Pricing</a>
<a href="../index.html#services" class="nav-link">Lösungen</a>
</nav>
</div>
<div class="top-banner-right">
<button id="cursorToggle" aria-label="Toggle Cursor" title="Toggle Custom Cursor">
<img src="../images/additional/cursor.png" alt="Default Cursor" class="cursor-icon">
</button>
<button id="loginBtn" class="login-btn" aria-label="Log in" title="Log in">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"></path>
<polyline points="10 17 15 12 10 7"></polyline>
<line x1="15" y1="12" x2="3" y2="12"></line>
</svg>
Log in
</button>
</div>
</header>
<!-- Slide Menu -->
<nav class="slide-menu" id="slideMenu">
<a href="../index.html">Startseite</a>
<a href="offers.html">Kontakt & Anfrage</a>
<a href="leads.html" class="active">Leads Dashboard</a>
</nav>
<!-- Overlay -->
<div class="overlay" id="overlay"></div>
<!-- Main Content -->
<main class="main-content leads-content">
<!-- Leads Widget -->
<div class="dashboard-container">
<h2 class="dashboard-title">Meine Anfragen</h2>
<p class="dashboard-subtitle">Übersicht Ihrer aktuellen Projektanfragen</p>
<div class="leads-table-wrapper">
<table class="leads-table" id="leadsTable">
<thead>
<tr>
<th>Datum</th>
<th>Dienstleistung</th>
<th>Status</th>
<th>Aktion</th>
</tr>
</thead>
<tbody id="leadsTableBody">
<!-- Populated by leads.js -->
</tbody>
</table>
</div>
</div>
<!-- Other Offers Section -->
<div class="dashboard-container offers-section">
<h2 class="dashboard-title">Andere Angebote von uns</h2>
<p class="dashboard-subtitle">Entdecken Sie weitere Dienstleistungen</p>
<div class="offers-grid">
<div class="offer-card">
<div class="offer-icon">🔍</div>
<h3 class="offer-title">SEO Optimierung</h3>
<p class="offer-description">Verbessern Sie Ihre Sichtbarkeit in Suchmaschinen und erreichen Sie mehr Kunden online.</p>
<a href="details.html?service=seo-optimierung" class="offer-btn">Details ansehen</a>
</div>
<div class="offer-card">
<div class="offer-icon">☁️</div>
<h3 class="offer-title">Cloud Migration</h3>
<p class="offer-description">Modernisieren Sie Ihre IT-Infrastruktur mit sicheren und skalierbaren Cloud-Lösungen.</p>
<a href="details.html?service=cloud-migration" class="offer-btn">Details ansehen</a>
</div>
<div class="offer-card">
<div class="offer-icon">📊</div>
<h3 class="offer-title">Datenanalyse</h3>
<p class="offer-description">Gewinnen Sie wertvolle Einblicke aus Ihren Daten mit unseren Analyse-Lösungen.</p>
<a href="details.html?service=datenanalyse" class="offer-btn">Details ansehen</a>
</div>
</div>
</div>
</main>
<script src="../scripts/leads.js"></script>
<script src="../scripts/cursor.js"></script>
<script src="../scripts/scroll-header.js"></script>
</body>
</html>