Files
HomeBase/public/index.html
Spencer 9c72b00b1b
Some checks failed
Deploy to BeePC / deploy (push) Has been cancelled
feat: Implement image fetching and storage system
- Add image-fetcher module for downloading and saving images from various sources.
- Create storage module for managing image files, including downloading, verifying integrity, and cleaning up orphaned files.
- Develop gallery HTML page for displaying images with sorting and filtering options.
- Set up RESTful API routes for image management, including fetching, adding tags, and deleting images.
- Introduce setup script for initializing the database and configuring image sources.
- Implement a batch process for verifying image integrity and cleaning up old images.
- Add setup batch script for easy installation and configuration of the image storage system.
2026-02-12 13:13:36 -05:00

70 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HomeBase</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<div class="container">
<header>
<h1>HomeBase</h1>
<p class="subtitle">Home automation hub</p>
</header>
<main>
<section class="status-section">
<h2>System Status</h2>
<div class="status-card">
<p id="status-message" class="loading">Loading...</p>
<p id="status-timestamp" class="timestamp"></p>
</div>
</section>
<section class="info-section">
<h2>Information</h2>
<div class="info-grid">
<div class="info-card">
<h3>Version</h3>
<p id="version">1.0.0</p>
</div>
<div class="info-card">
<h3>Domain</h3>
<p id="domain">Loading...</p>
</div>
</div>
</section>
<section class="features-section">
<h2>Features</h2>
<div class="features-grid">
<a href="/gallery.html" class="feature-card">
<div class="feature-icon">📸</div>
<h3>Image Gallery</h3>
<p>Browse captured images on an interactive timeline</p>
</a>
<a href="/api/stats" class="feature-card">
<div class="feature-icon">📊</div>
<h3>Statistics</h3>
<p>View storage usage and image metrics</p>
</a>
<a href="/api/status" class="feature-card">
<div class="feature-icon"></div>
<h3>API Status</h3>
<p>Check system status and features</p>
</a>
</div>
</section>
</main>
<footer>
<p>&copy; 2026 HomeBase. All rights reserved.</p>
</footer>
</div>
<script src="/app.js"></script>
</body>
</html>