usezivvy commited on
Commit
57bd9c4
·
verified ·
1 Parent(s): 602af73

<!DOCTYPE html>

Browse files

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Communications Timeline - John Smith</title>

<style>
/* ZIVVY DESIGN SYSTEM - GRID4, RHYTHM24, TOUCH44, TIMING300 */
:root {
--zivvy-primary: #256EFF;
--zivvy-primary-hover: #4285FF;
--zivvy-success: #10B981;
--zivvy-warning: #F59E0B;
--zivvy-error: #EF4444;
--zivvy-white: #FFFFFF;
--zivvy-background: #F9FAFB;
--zivvy-border: #E5E7EB;
--zivvy-text-primary: #1F2937;
--zivvy-text-secondary: #6B7280;
--zivvy-text-tertiary: #9CA3AF;
--zivvy-gold: #FFD700;

/* GRID4 */
--zivvy-space-2: 8px;
--zivvy-space-3: 12px;
--zivvy-space-4: 16px;
--zivvy-space-6: 24px;
--zivvy-space-8: 32px;

/* RHYTHM24 */
--zivvy-rhythm-1: 24px;
--zivvy-rhythm-1-5: 36px;
--zivvy-rhythm-2: 48px;

/* TOUCH44 */
--zivvy-touch-minimum: 44px;

/* TIMING300 */
--zivvy-transition-base: 250ms ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: var(--zivvy-background);
color: var(--zivvy-text-primary);
line-height: var(--zivvy-rhythm-1);
}

.page-container {
max-width: 1200px;
margin: 0 auto;
padding: var(--zivvy-rhythm-1);
}

.page-header {
background: var(--zivvy-white);
border-radius: 12px;
padding: var(--zivvy-rhythm-1);
margin-bottom: var(--zivvy-rhythm-1);
border: 1px solid var(--zivvy-border);
}

.back-link {
display: inline-flex;
align-items: center;
gap: var(--zivvy-space-2);
color: var(--zivvy-primary);
text-decoration: none;
font-size: 14px;
font-weight: 600;
margin-bottom: var(--zivvy-space-4);
padding: var(--zivvy-space-2) 0;
}

.member-info {
display: flex;
align-items: center;
gap: var(--zivvy-space-4);
margin-bottom: var(--zivvy-rhythm-1);
}

.member-avatar {
width: 64px;
height: 64px;
border-radius: 50%;
background: linear-gradient(135deg, var(--zivvy-primary), var(--zivvy-primary-hover));
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 28px;
font-weight: 700;
border: 3px solid var(--zivvy-primary);
}

.member-details h1 {
font-size: 28px;
font-weight: 700;
margin-bottom: 4px;
}

.member-meta {
display: flex;
flex-wrap: wrap;
gap: var(--zivvy-space-4);
color: var(--zivvy-text-secondary);
font-size: 14px;
}

.tab-nav {
display: flex;
gap: var(--zivvy-space-2);
border-bottom: 2px solid var(--zivvy-border);
margin-top: var(--zivvy-rhythm-1);
}

.tab-button {
padding: var(--zivvy-space-3) var(--zivvy-space-4);
background: none;
border: none;
font-size: 15px;
font-weight: 600;
color: var(--zivvy-text-secondary);
cursor: pointer;
border-bottom: 3px solid transparent;
margin-bottom: -2px;
min-height: var(--zivvy-touch-minimum);
}

.tab-button.active {
color: var(--zivvy-primary);
border-bottom-color: var(--zivvy-primary);
}

.metrics-dashboard {
background: var(--zivvy-white);
border-radius: 12px;
padding: var(--zivvy-rhythm-1);
margin-bottom: var(--zivvy-rhythm-1);
border: 1px solid var(--zivvy-border);
}

.metrics-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: var(--zivvy-rhythm-1);
}

.metrics-title {
font-size: 20px;
font-weight: 700;
}

.metrics-controls {
display: flex;
gap: var(--zivvy-space-2);
}

.date-selector, .action-button {
padding: var(--zivvy-space-2) var(--zivvy-space-4);
border: 1px solid var(--zivvy-border);
border-radius: 8px;
background: var(--zivvy-white);
font-size: 14px;
font-weight: 600;
min-height: var(--zivvy-touch-minimum);
cursor: pointer;
}

.section-title {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--zivvy-text-secondary);
margin-bottom: var(--zivvy-space-3);
}

.metrics-section {
margin-bottom: var(--zivvy-rhythm-1);
}

.metrics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
gap: var(--zivvy-space-3);
}

.metric-card {
display: flex;
flex-direction: column;
align-items: center;
padding: var(--zivvy-space-4);
background: var(--zivvy-background);
border: 2px solid var(--zivvy-border);
border-radius: 12px;
cursor: pointer;
transition: var(--zivvy-transition-base);
min-height: 100px;
justify-content: center;
gap: var(--zivvy-space-2);
}

.metric-card:hover {
border-color: var(--zivvy-primary);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.metric-icon { font-size: 32px; line-height: 1; }
.metric-count { font-size: 28px; font-weight: 700; line-height: 1; }
.metric-label { font-size: 12px; font-weight: 600; color: var(--zivvy-text-secondary); }

.impact-summary {
background: var(--zivvy-background);
border-radius: 8px;
padding: var(--zivvy-space-4);
margin-top: var(--zivvy-rhythm-1);
}

.impact-summary h4 {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--zivvy-text-secondary);
margin-bottom: var(--zivvy-space-3);
}

.impact-list { list-style: none; }
.impact-item { font-size: 14px; margin-bottom: var(--zivvy-space-2); }

.filter-section {
background: var(--zivvy-white);
border-radius: 12px;
padding: var(--zivvy-space-4);
margin-bottom: var(--zivvy-rhythm-1);
border: 1px solid var(--zivvy-border);
}

.filter-group { margin-bottom: var(--zivvy-space-4); }
.filter-group:last-child { margin-bottom: 0; }

.filter-label {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--zivvy-text-secondary);
margin-bottom: var(--zivvy-space-2);
}

.filter-pills {
display: flex;
gap: var(--zivvy-space-2);
flex-wrap: wrap;
}

.filter-pill {
padding: var(--zivvy-space-2) var(--zivvy-space-4);
border: 2px solid var(--zivvy-border);
border-radius: 24px;
background: var(--zivvy-white);
font-size: 14px;
font-weight: 600;
cursor: pointer;
min-height: var(--zivvy-touch-minimum);
white-space: nowrap;
}

.filter-pill.active {
border-color: var(--zivvy-primary);
background: var(--zivvy-primary);
color: var(--zivvy-white);
}

.timeline-container {
background: var(--zivvy-white);
border-radius: 12px;
padding: var(--zivvy-rhythm-1);
border: 1px solid var(--zivvy-border);
}

.timeline-date-group {
margin-bottom: var(--zivvy-rhythm-2);
}

.timeline-date-header {
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--zivvy-text-secondary);
padding: var(--zivvy-space-3) 0;
border-bottom: 2px solid var(--zivvy-border);
margin-bottom: var(--zivvy-rhythm-1);
}

.timeline-card {
border: 1px solid var(--zivvy-border);
border-left-width: 4px;
border-radius: 8px;
padding: var(--zivvy-space-4);
margin-bottom: var(--zivvy-space-4);
transition: var(--zivvy-transition-base);
background: var(--zivvy-white);
}

.timeline-card:hover {
border-left-width: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
transform: translateX(4px);
}

.timeline-card.action {
border-left-color: #10B981;
background: linear-gradient(to right, rgba(16, 185, 129, 0.05), transparent);
}

.timeline-card.action.revenue, .timeline-card.action.referral {
border-left-color: #FFD700;
background: linear-gradient(to right, rgba(255, 215, 0, 0.08), transparent);
}

.timeline-card.communication {
border-left-color: #3B82F6;
background: linear-gradient(to right, rgba(59, 130, 246, 0.03), transparent);
}

.timeline-card.communication.sms {
border-left-color: #10B981;
background: linear-gradient(to right, rgba(16, 185, 129, 0.03), transparent);
}

.timeline-card-header {
display: flex;
align-items: center;
gap: var(--zivvy-space-3);
margin-bottom: var(--zivvy-space-3);
}

.timeline-icon { font-size: 24px; line-height: 1; }

.timeline-type {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--zivvy-text-secondary);
flex: 1;
}

.timeline-time {
font-size: 14px;
font-weight: 600;
color: var(--zivvy-text-tertiary);
}

.timeline-card-content {
margin-bottom: var(--zivvy-space-3);
}

.timeline-title {
font-size: 16px;
font-weight: 600;
margin-bottom: var(--zivvy-space-2);
}

.timeline-meta {
font-size: 14px;
color: var(--zivvy-text-secondary);
}

.timeline-attribution {
font-size: 13px;
color: var(--zivvy-text-tertiary);
font-style: italic;
margin-top: var(--zivvy-space-2);
padding: var(--zivvy-space-2);
background: rgba(0, 0, 0, 0.02);
border-radius: 4px;
}

.timelin

Files changed (2) hide show
  1. README.md +9 -5
  2. index.html +209 -19
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Undefined
3
- emoji: 🦀
4
- colorFrom: blue
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
1
  ---
2
+ title: undefined
3
+ colorFrom: green
4
+ colorTo: blue
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
14
+
index.html CHANGED
@@ -1,19 +1,209 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ChatterTrack Pro | Member Communications</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <style>
11
+ /* Custom animations */
12
+ @keyframes pulse {
13
+ 0%, 100% { opacity: 1; }
14
+ 50% { opacity: 0.5; }
15
+ }
16
+ .animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
17
+
18
+ /* Custom scrollbar */
19
+ ::-webkit-scrollbar {
20
+ width: 8px;
21
+ height: 8px;
22
+ }
23
+ ::-webkit-scrollbar-track {
24
+ background: #f1f1f1;
25
+ border-radius: 10px;
26
+ }
27
+ ::-webkit-scrollbar-thumb {
28
+ background: #888;
29
+ border-radius: 10px;
30
+ }
31
+ ::-webkit-scrollbar-thumb:hover {
32
+ background: #555;
33
+ }
34
+
35
+ /* Custom timeline connector */
36
+ .timeline-connector {
37
+ position: absolute;
38
+ left: 24px;
39
+ top: 32px;
40
+ bottom: 0;
41
+ width: 2px;
42
+ background: #e5e7eb;
43
+ }
44
+
45
+ /* Glow effect for important items */
46
+ .glow-primary {
47
+ box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
48
+ }
49
+ .glow-success {
50
+ box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
51
+ }
52
+ </style>
53
+ </head>
54
+ <body class="bg-gray-50 font-sans antialiased">
55
+ <!-- Main Container -->
56
+ <div class="min-h-screen">
57
+ <!-- Header -->
58
+ <header class="bg-white shadow-sm">
59
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
60
+ <div class="flex justify-between items-center">
61
+ <div class="flex items-center space-x-4">
62
+ <h1 class="text-2xl font-bold text-gray-900">ChatterTrack Pro</h1>
63
+ <nav class="hidden md:flex space-x-8">
64
+ <a href="#" class="text-gray-500 hover:text-blue-600 font-medium">Dashboard</a>
65
+ <a href="#" class="text-gray-500 hover:text-blue-600 font-medium">Members</a>
66
+ <a href="#" class="text-blue-600 font-medium border-b-2 border-blue-600 pb-1">Communications</a>
67
+ <a href="#" class="text-gray-500 hover:text-blue-600 font-medium">Campaigns</a>
68
+ <a href="#" class="text-gray-500 hover:text-blue-600 font-medium">Reports</a>
69
+ </nav>
70
+ </div>
71
+ <div class="flex items-center space-x-4">
72
+ <button class="p-2 rounded-full bg-gray-100 text-gray-500 hover:bg-gray-200">
73
+ <i data-feather="bell"></i>
74
+ </button>
75
+ <div class="relative">
76
+ <button class="flex items-center space-x-2 focus:outline-none">
77
+ <img src="http://static.photos/people/320x240/1" class="w-8 h-8 rounded-full" alt="User">
78
+ <span class="hidden md:inline text-sm font-medium text-gray-700">Admin</span>
79
+ <i data-feather="chevron-down" class="w-4 h-4 text-gray-500"></i>
80
+ </button>
81
+ </div>
82
+ </div>
83
+ </div>
84
+ </div>
85
+ </header>
86
+
87
+ <!-- Member Profile Header -->
88
+ <div class="bg-white shadow">
89
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6">
90
+ <div class="flex flex-col md:flex-row md:items-center md:justify-between">
91
+ <div class="flex items-center space-x-4">
92
+ <div class="relative">
93
+ <img src="http://static.photos/people/320x240/2" class="w-16 h-16 rounded-full border-4 border-blue-100" alt="John Smith">
94
+ <span class="absolute bottom-0 right-0 bg-green-500 rounded-full w-4 h-4 border-2 border-white"></span>
95
+ </div>
96
+ <div>
97
+ <h2 class="text-2xl font-bold text-gray-900">John Smith</h2>
98
+ <div class="flex flex-wrap items-center gap-2 mt-1 text-sm text-gray-500">
99
+ <span class="flex items-center">
100
+ <i data-feather="user" class="w-3 h-3 mr-1"></i> Member #12345
101
+ </span>
102
+ <span class="flex items-center">
103
+ <i data-feather="calendar" class="w-3 h-3 mr-1"></i> Joined Oct 1, 2025
104
+ </span>
105
+ <span class="flex items-center">
106
+ <i data-feather="mail" class="w-3 h-3 mr-1"></i> john.smith@email.com
107
+ </span>
108
+ <span class="flex items-center">
109
+ <i data-feather="phone" class="w-3 h-3 mr-1"></i> (555) 123-4567
110
+ </span>
111
+ </div>
112
+ </div>
113
+ </div>
114
+ <div class="mt-4 md:mt-0 flex space-x-3">
115
+ <button class="px-4 py-2 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
116
+ <i data-feather="edit-2" class="w-4 h-4 mr-2 inline"></i> Edit Profile
117
+ </button>
118
+ <button class="px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
119
+ <i data-feather="message-square" class="w-4 h-4 mr-2 inline"></i> New Message
120
+ </button>
121
+ </div>
122
+ </div>
123
+
124
+ <!-- Tabs -->
125
+ <div class="mt-6 border-b border-gray-200">
126
+ <nav class="-mb-px flex space-x-8">
127
+ <a href="#" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">
128
+ Overview
129
+ </a>
130
+ <a href="#" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">
131
+ Attendance
132
+ </a>
133
+ <a href="#" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">
134
+ Payments
135
+ </a>
136
+ <a href="#" class="border-blue-500 text-blue-600 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">
137
+ Communications
138
+ </a>
139
+ <a href="#" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm">
140
+ Notes
141
+ </a>
142
+ </nav>
143
+ </div>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Main Content -->
148
+ <main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
149
+ <!-- Stats Cards -->
150
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-6 mb-8">
151
+ <div class="bg-white overflow-hidden shadow rounded-lg">
152
+ <div class="px-4 py-5 sm:p-6">
153
+ <div class="flex items-center">
154
+ <div class="flex-shrink-0 bg-blue-100 rounded-md p-3">
155
+ <i data-feather="mail" class="h-6 w-6 text-blue-600"></i>
156
+ </div>
157
+ <div class="ml-5 w-0 flex-1">
158
+ <dl>
159
+ <dt class="text-sm font-medium text-gray-500 truncate">
160
+ Emails Sent
161
+ </dt>
162
+ <dd>
163
+ <div class="text-lg font-medium text-gray-900">
164
+ 3
165
+ </div>
166
+ </dd>
167
+ </dl>
168
+ </div>
169
+ </div>
170
+ </div>
171
+ </div>
172
+
173
+ <div class="bg-white overflow-hidden shadow rounded-lg">
174
+ <div class="px-4 py-5 sm:p-6">
175
+ <div class="flex items-center">
176
+ <div class="flex-shrink-0 bg-green-100 rounded-md p-3">
177
+ <i data-feather="message-square" class="h-6 w-6 text-green-600"></i>
178
+ </div>
179
+ <div class="ml-5 w-0 flex-1">
180
+ <dl>
181
+ <dt class="text-sm font-medium text-gray-500 truncate">
182
+ SMS Messages
183
+ </dt>
184
+ <dd>
185
+ <div class="text-lg font-medium text-gray-900">
186
+ 5
187
+ </div>
188
+ </dd>
189
+ </dl>
190
+ </div>
191
+ </div>
192
+ </div>
193
+ </div>
194
+
195
+ <div class="bg-white overflow-hidden shadow rounded-lg">
196
+ <div class="px-4 py-5 sm:p-6">
197
+ <div class="flex items-center">
198
+ <div class="flex-shrink-0 bg-yellow-100 rounded-md p-3">
199
+ <i data-feather="bell" class="h-6 w-6 text-yellow-600"></i>
200
+ </div>
201
+ <div class="ml-5 w-0 flex-1">
202
+ <dl>
203
+ <dt class="text-sm font-medium text-gray-500 truncate">
204
+ Push Notifications
205
+ </dt>
206
+ <dd>
207
+ <div class="text-lg font-medium
208
+ </body>
209
+ </html>