10 lines
466 B
HTML
10 lines
466 B
HTML
{{ define "content" }}
|
|
<div class="max-w-4xl mx-auto">
|
|
<h1 class="text-3xl font-bold mb-6">Logs</h1>
|
|
<div class="bg-gray-800 p-6 rounded">
|
|
<p class="text-gray-300">Application logs will be displayed here. Currently, logs are output to the console when the application is running.</p>
|
|
<p class="text-gray-400 text-sm mt-4">Check the terminal output where you started the application for detailed activity logs.</p>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|