Compare commits

...

3 Commits

Author SHA1 Message Date
Harry ed44e65638 Merge pull request 'add SVGs to main dashboard' (#1) from pax/Staff-Dashboard:main into main
Reviewed-on: #1
2024-10-14 16:17:42 -04:00
pax 1226c08cd1 add SVGs 2024-10-14 20:39:49 +04:00
pax 67e6ee0dca add .gitignore 2024-10-14 20:06:07 +04:00
2 changed files with 187 additions and 11 deletions

50
.gitignore vendored Normal file
View File

@ -0,0 +1,50 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# dotenv environment variables file
.env
.env.test
# parcel-bundler cache (https://parceljs.org/)
.cache
# Serverless directories
.serverless/
# macOS files
.DS_Store
*.DS_Store
# Database files
*.sqlite
# IDE and text editor configuration files
.vscode/
.idea/

View File

@ -9,39 +9,165 @@
<body>
<div class="bento-box">
<a href="https://libraryofcode.org/" class="bento-item large">
<img src="logos/loc.png" alt="Library Of Code" class="logo">
<img src="https://static.libraryofcode.org/library_of_code_redeg.png" alt="Library Of Code" class="logo">
</a>
<a href="https://time.libraryofcode.org/" class="bento-item large">
<img src="logos/tts.png" alt="Time Tracking" class="logo">
<!--<img src="logos/tts.png" alt="Time Tracking" class="logo">-->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="200" height="200">
<title>Time Tracking</title>
<!-- Outer Circle (Clock shape) -->
<circle cx="50" cy="50" r="45" stroke="#333" stroke-width="4" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></circle>
<!-- Clock Hands -->
<line x1="50" y1="50" x2="50" y2="20" stroke="#333" stroke-width="3" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #5c564c;"></line>
<line x1="50" y1="50" x2="75" y2="50" stroke="#333" stroke-width="3" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #5c564c;"></line>
<!-- Curly Braces (Code symbol) -->
<text x="15" y="55" font-size="30" font-family="monospace" fill="#333" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;">{</text>
<text x="70" y="55" font-size="30" font-family="monospace" fill="#333" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;">}</text>
<!-- Service Name (Library of Code) -->
<text x="50%" y="75" font-size="10" font-family="Arial" fill="#333" text-anchor="middle" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;">
Time tracking
</text></svg>
</a>
<a href="https://inbox.libraryofcode.org/" class="bento-item large">
<img src="logos/mail.png" alt="Web Mail" class="logo">
<title>Web Mail</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="200" height="200">
<!-- Outer Circle -->
<circle cx="50" cy="50" r="45" stroke="#333" stroke-width="3" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></circle>
<!-- Envelope Icon (Webmail symbol) -->
<rect x="30" y="35" width="40" height="25" stroke="#333" stroke-width="2" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></rect>
<polyline points="30,35 50,50 70,35" stroke="#333" stroke-width="2" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></polyline>
<!-- Workflow Arrows -->
<path d="M35 65 L50 75 L65 65" stroke="#333" stroke-width="2" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></path>
<line x1="50" y1="55" x2="50" y2="75" stroke="#333" stroke-width="2" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #5c564c;"></line>
<!-- Service Name (Optional) -->
<text x="50%" y="85" font-size="10" font-family="Arial" fill="#333" text-anchor="middle" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;">
Web Mail
</text>
</svg>
</a>
<a href="https://hr.libraryofcode.org/" class="bento-item large">
<img src="logos/hr.png" alt="Human Resources" class="logo">
<title>Human Resources</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="200" height="200">
<!-- Outer Circle -->
<circle cx="50" cy="50" r="45" stroke="#333" stroke-width="3" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></circle>
<!-- Abstract Person Icon (HR symbol) -->
<circle cx="50" cy="35" r="8" fill="#333" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;"></circle> <!-- Head -->
<path d="M50 43 L40 60 L60 60 Z" fill="#333" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #1c2020;"></path> <!-- Body -->
<!-- Briefcase (Business/HR symbol) -->
<rect x="38" y="60" width="24" height="12" fill="none" stroke="#333" stroke-width="2" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></rect>
<line x1="43" y1="60" x2="43" y2="72" stroke="#333" stroke-width="2" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #5c564c;"></line>
<line x1="57" y1="60" x2="57" y2="72" stroke="#333" stroke-width="2" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #5c564c;"></line>
<rect x="47" y="56" width="6" height="4" fill="#333" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;"></rect> <!-- Handle -->
<!-- Service Name (Optional) -->
<text x="50%" y="83" font-size="10" font-family="Arial" fill="#333" text-anchor="middle" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;">
HR
</text>
</svg>
</a>
<a href="https://skb.libraryofcode.org/" class="bento-item large">
<img src="logos/skb.png" alt="Staff Knowledge Base" class="logo">
<title>Staff Knowledge base</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="200" height="200">
<!-- Outer Circle -->
<circle cx="50" cy="50" r="45" stroke="#333" stroke-width="3" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></circle>
<!-- Book Icon (Knowledge symbol) -->
<rect x="30" y="35" width="40" height="30" fill="none" stroke="#333" stroke-width="2" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></rect>
<line x1="50" y1="35" x2="50" y2="65" stroke="#333" stroke-width="2" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #5c564c;"></line> <!-- Book spine -->
<line x1="30" y1="40" x2="50" y2="40" stroke="#333" stroke-width="2" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #5c564c;"></line> <!-- Top page -->
<line x1="50" y1="40" x2="70" y2="40" stroke="#333" stroke-width="2" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #5c564c;"></line> <!-- Top page -->
<!-- Information Icon (i symbol) -->
<circle cx="50" cy="25" r="4" fill="#333" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;"></circle>
<rect x="48" y="29" width="4" height="10" fill="#333" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;"></rect>
<!-- Centered Service Name -->
<text x="50" y="82" font-size="10" font-family="Arial" fill="#333" text-anchor="middle" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;">
Staff wiki
</text>
</svg>
</a>
<a href="https://git.libraryofcode.org/" class="bento-item">
<img src="logos/gitea.png" alt="Gitea" class="logo">
<title>Gitea</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="200" height="200">
<!-- Outer Circle -->
<circle cx="50" cy="50" r="45" stroke="#333" stroke-width="3" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></circle>
<!-- Code Tags with "Gitea" -->
<text x="50%" y="55" font-size="16" font-family="monospace" fill="#333" text-anchor="middle" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;">
&lt;/Gitea&gt;
</text>
</svg>
</a>
<a href="https://lists.libraryofcode.org/" class="bento-item">
<img src="logos/lists.png" alt="Mailing List" class="logo">
<title>Mailing lists</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="200" height="200">
<!-- Outer Circle -->
<circle cx="50" cy="50" r="45" stroke="#333" stroke-width="3" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></circle>
<!-- Envelope Icon -->
<rect x="30" y="35" width="40" height="25" fill="none" stroke="#333" stroke-width="2" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></rect>
<polyline points="30,35 50,50 70,35" stroke="#333" stroke-width="2" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></polyline> <!-- Envelope flap -->
<!-- Mailing List Text -->
<text x="50%" y="74" font-size="10" font-family="Arial" fill="#333" text-anchor="middle" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;">
Mailing Lists
</text>
</svg>
</a>
<a href="https://manage.statuspage.io/" class="bento-item">
<img src="logos/status.png" alt="Status" class="logo">
<title>Status page</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="200" height="200">
<!-- Outer Circle -->
<circle cx="50" cy="50" r="45" stroke="#333" stroke-width="3" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></circle>
<!-- Status Page Text in Green -->
<text x="61.5%" y="55" font-size="11" font-family="Arial" fill="green" text-anchor="middle" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #56bf56;">
Status Page
</text>
<!-- Green Status Dot moved to cx="20" cy="50" -->
<circle cx="20" cy="50" r="8" fill="green" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #56bf56;"></circle> <!-- Status Dot -->
<!-- Checkmark moved to cx="20" cy="50" -->
<path d="M15 50 L20 55 L25 45" stroke="white" stroke-width="3" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #aeadaa;"></path> <!-- Checkmark -->
</svg>
</a>
<a href="https://wiki.libraryofcode.org/" class="bento-item">
<img src="logos/wiki.png" alt="Public Knowledge Base" class="logo">
<title>Public Knowledge base</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="200" height="200">
<!-- Outer Circle -->
<circle cx="50" cy="50" r="45" stroke="#333" stroke-width="3" fill="none" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #96928d;"></circle>
<!-- Book Icon (Knowledge symbol) -->
<rect x="30" y="35" width="40" height="30" fill="#4CAF50" stroke="#333" stroke-width="2" data-darkreader-inline-fill="" data-darkreader-inline-stroke="" style="--darkreader-inline-fill: #2e6930; --darkreader-inline-stroke: #96928d;"></rect> <!-- Green Book Cover -->
<line x1="50" y1="35" x2="50" y2="65" stroke="#333" stroke-width="2" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #5c564c;"></line> <!-- Book spine -->
<line x1="30" y1="40" x2="50" y2="40" stroke="#333" stroke-width="2" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #5c564c;"></line> <!-- Top page -->
<line x1="50" y1="40" x2="70" y2="40" stroke="#333" stroke-width="2" data-darkreader-inline-stroke="" style="--darkreader-inline-stroke: #5c564c;"></line> <!-- Top page -->
<!-- Lock Icon (symbolizing internal access) -->
<rect x="44" y="25" width="12" height="8" fill="#FFC107" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #bf9516;"></rect> <!-- Yellow lock body -->
<rect x="48" y="20" width="4" height="5" fill="#FFC107" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #bf9516;"></rect> <!-- Yellow lock shackle -->
<!-- Centered Service Name -->
<text x="50" y="80" font-size="10" font-family="Arial" fill="#333" text-anchor="middle" data-darkreader-inline-fill="" style="--darkreader-inline-fill: #96928d;">
public Wiki
</text>
</svg>
</a>
<!-- Add as many more items as needed -->