adding public folder

This commit is contained in:
Steve Dogiakos 2025-01-27 13:47:35 -07:00
parent 98870d51f1
commit 626fa3d4a6
2 changed files with 66 additions and 0 deletions

26
public/script.js Normal file
View File

@ -0,0 +1,26 @@
async function fetchApproved() {
try {
const response = await fetch('/api/approved');
const data = await response.json();
return data;
} catch (error) {
console.error('Error fetching approved data:', error);
return [];
}
}
async function updateTicker() {
const approvedData = await fetchApproved();
const tickerContent = approvedData
.map(entry => `${entry.name} (${entry.location}): ${entry.comment}`)
.join(' ');
const tickerElement = document.getElementById('ticker-content');
tickerElement.textContent = tickerContent;
}
// Fetch on load
updateTicker();
// Refresh every 30 seconds (adjust as needed)
setInterval(updateTicker, 30000);

40
public/syle.css Normal file
View File

@ -0,0 +1,40 @@
/* Basic layout */
body {
margin: 0;
font-family: sans-serif;
background: #f0f0f0;
}
h1 {
text-align: center;
padding: 1rem;
}
/* Ticker styles */
#ticker-container {
position: fixed;
bottom: 0;
width: 100%;
background-color: #333;
color: #fff;
height: 40px;
display: flex;
align-items: center;
overflow: hidden;
}
#ticker-content {
white-space: nowrap;
animation: ticker 20s linear infinite;
padding-left: 100%;
}
@keyframes ticker {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-100%);
}
}