Add web/templates/settings/home.html

This commit is contained in:
Joshua Laymon 2025-08-20 01:28:10 +00:00
parent 4a964092be
commit bbad616a56

View File

@ -0,0 +1,11 @@
{# templates/settings/home.html #}
{% extends "base.html" %}
{% block title %}Settings{% endblock %}
{% block content %}
<div class="max-w-3xl mx-auto px-4 py-8">
<h1 class="text-2xl font-semibold mb-4">Settings</h1>
<p class="text-gray-600">Add your settings here as you go.</p>
</div>
{% endblock %}