-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.html
121 lines (113 loc) · 4.82 KB
/
README.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phone Tree Manager</title>
<style>
body {
font-family: Arial, sans-serif;
color: #333;
line-height: 1.6;
margin: 20px;
padding: 0;
background-color: #f4f4f4;
}
h1, h2, h3 {
color: #007bff;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
max-width: 900px;
margin: auto;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section {
margin-bottom: 20px;
}
.section h2 {
border-bottom: 2px solid #007bff;
padding-bottom: 10px;
}
.code {
background: #f8f9fa;
border-left: 3px solid #007bff;
padding: 10px;
margin: 10px 0;
overflow-x: auto;
}
</style>
</head>
<body>
<div class="container">
<h1>Phone Tree Manager</h1>
<div class="section">
<h2>About</h2>
<p>
Phone Tree Manager is an open source application designed to simplify and streamline the process of managing phone calls in a professional setting.
Inspired by my personal experience working as a cashier in retail, where handling numerous phone calls daily became increasingly stressful and overwhelming,
this app aims to provide a more organized and efficient way to manage communication.
</p>
</div>
<div class="section">
<h2>Inspiration</h2>
<p>
During my time in retail, I found myself juggling a high volume of calls, leading to significant stress. The traditional methods of tracking these calls
proved inadequate. As an aviation enthusiast, I was familiar with the concept of air traffic control strips used to manage aircraft movements.
This inspired me to envision a similar approach for phone call management—a structured, visual method to track calls as they move through various stages.
</p>
</div>
<div class="section">
<h2>The Solution</h2>
<p>
Initially, I experimented with a physical "air traffic control strips" system to manage calls, but it quickly became messy. I decided to leverage my
programming skills to create Phone Tree Manager, which provides a clear, visual representation of the status of each call right from my mobile phone. This includes whether it is inbound,
on hold, or parked for another team member, along with the relevant store identification number and extension information.
</p>
</div>
<div class="section">
<h2>Open Source</h2>
<p>
Phone Tree Manager is open source to encourage community-driven solutions and collaboration. By sharing the source code, free of charge, I aim to empower individuals and
organizations to customize and adapt the tool to their specific needs. Contributions from developers worldwide will lead to continuous improvement and innovation.
</p>
</div>
<div class="section">
<h2>Get Started</h2>
<p>
To get started with Phone Tree Manager, clone the repository and follow the installation instructions in the <a href="https://github.com/IBXCODECAT/PhoneTreeManager/blob/main/INSTALL.md">INSTALL.md</a> file.
</p>
<div class="code">
<pre><code>git clone https://github.com/IBXCODECAT/PhoneTreeManager.git</code></pre>
</div>
</div>
<div class="section">
<h2>Contributing</h2>
<p>
Contributions are welcome! Please refer to the <a href="https://github.com/IBXCODECAT/PhoneTreeManager/blob/main/CONTRIBUTING.md">CONTRIBUTING.md</a> file for guidelines on how to contribute to the project.
</p>
</div>
<div class="section">
<h2>License</h2>
<p>
Phone Tree Manager is licensed under the MIT License. See the <a href="https://github.com/IBXCODECAT/PhoneTreeManager/blob/main/LICENSE">LICENSE</a> file for details.
</p>
</div>
<div class="section">
<h2>Contact</h2>
<p>
If you have any questions or feedback, feel free to reach out via email or open an issue on the GitHub repository.
</p>
</div>
</div>
</body>
</html>