freightdesk/webapp/src/views/partials/footer.ejs
FreightDesk 1a4eaaa040 Initial commit: FreightDesk v1.0
- Express + EJS server-rendered app
- Supabase PostgreSQL database
- Auth: username/password with bcrypt
- Dashboard with business stats
- Load CRUD with filters
- WhatsApp message parser
- Payment tracking
- Shipper & vehicle management
- Reports (monthly, top shippers, routes)
- Government-app aesthetic (tricolor theme)
- Dark mode support
- Docker + Coolify deployment ready
- Seed data from existing business ledger (88 loads, 41 shippers, 70 vehicles)
2026-06-07 18:57:24 +00:00

17 lines
593 B
Text

</main>
</div>
<footer class="govt-footer">
<div class="footer-tricolor"><span></span><span></span><span></span></div>
<p>This is an official platform under the <strong>Ministry of Road Transport &amp; Highways</strong>, Government of India initiative.</p>
<p class="footer-muted">&copy; <%= year %> <%= appName %> (<%= appNameHi %>). All rights reserved.</p>
</footer>
<script src="/js/app.js"></script>
<% if (typeof extraJs !== 'undefined') { %>
<% for (const js of extraJs) { %>
<script src="<%= js %>"></script>
<% } %>
<% } %>
</body>
</html>