7 lines
237 B
HTML
7 lines
237 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Meal Planner{% endblock %}
|
|
{% block content %}
|
|
<h1 class="text-3xl font-bold mb-6">Meal Planner</h1>
|
|
<p class="text-gray-600">Coming soon! Plan your meals for the week ahead.</p>
|
|
{% endblock %}
|