Initial commit: SFA Tool mockup with renewal management features

This commit is contained in:
2025-05-27 10:20:20 +02:00
commit db27898a7f
6 changed files with 2374 additions and 0 deletions

202
threads.html Normal file
View File

@@ -0,0 +1,202 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SFA Tool - Threads</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
padding-top: 60px; /* Add padding for fixed header */
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0.5rem 1rem;
}
header {
background-color: #2c3e50;
color: white;
padding: 0.5rem 0;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}
h1 {
font-size: 1.25rem;
font-weight: 500;
}
nav {
display: flex;
gap: 1.5rem;
}
nav a {
color: white;
text-decoration: none;
padding: 0.25rem 0.75rem;
border-radius: 4px;
transition: background-color 0.2s;
font-size: 0.9rem;
}
nav a:hover {
background-color: rgba(255, 255, 255, 0.1);
}
nav a.active {
background-color: rgba(255, 255, 255, 0.2);
font-weight: 500;
}
.content {
background-color: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin-top: 1.5rem;
}
.thread-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
}
.thread-filters {
display: flex;
gap: 1rem;
margin-bottom: 1.5rem;
}
.filter-button {
padding: 0.5rem 1rem;
border: 1px solid #ddd;
border-radius: 4px;
background: white;
cursor: pointer;
font-size: 0.9rem;
}
.filter-button:hover {
background: #f5f5f5;
}
.thread-list {
border: 1px solid #eee;
border-radius: 4px;
}
.thread-item {
padding: 1rem;
border-bottom: 1px solid #eee;
}
.thread-item:last-child {
border-bottom: none;
}
.thread-meta {
display: flex;
justify-content: space-between;
margin-top: 0.5rem;
font-size: 0.9rem;
color: #666;
}
.new-thread-button {
padding: 0.5rem 1rem;
background: #2c3e50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 0.9rem;
}
.new-thread-button:hover {
background: #34495e;
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<h1>SFA Tool</h1>
<nav>
<a href="index.html">Renewals</a>
<a href="threads.html" class="active">Threads</a>
<a href="profile.html">Profile Settings</a>
</nav>
</div>
</div>
</header>
<main class="container">
<div class="content">
<div class="thread-header">
<h2>Threads</h2>
<button class="new-thread-button">+ New Thread</button>
</div>
<div class="thread-filters">
<button class="filter-button">All Threads</button>
<button class="filter-button">Recent</button>
<button class="filter-button">Unread</button>
<button class="filter-button">Archived</button>
</div>
<div class="thread-list">
<div class="thread-item">
<h3>Q1 Sales Strategy Discussion</h3>
<p>Latest updates on the Q1 sales strategy and team alignment...</p>
<div class="thread-meta">
<span>Last updated: 2 hours ago</span>
<span>5 participants</span>
</div>
</div>
<div class="thread-item">
<h3>Customer Feedback Review</h3>
<p>Compilation of recent customer feedback and suggested improvements...</p>
<div class="thread-meta">
<span>Last updated: 1 day ago</span>
<span>3 participants</span>
</div>
</div>
<div class="thread-item">
<h3>Team Meeting Notes</h3>
<p>Summary of today's team meeting and action items...</p>
<div class="thread-meta">
<span>Last updated: 3 days ago</span>
<span>8 participants</span>
</div>
</div>
</div>
</div>
</main>
</body>
</html>