fix: garden ui polish - form styles, back nav, species dropdown, upload limit

This commit is contained in:
ginnoir
2026-06-01 23:38:52 -05:00
parent 6b25d67537
commit dd980c6932
6 changed files with 115 additions and 6 deletions
+17 -1
View File
@@ -11,7 +11,23 @@ export default async function NewPlantPage({
return (
<div className="page-content max-w-xl">
<h1 className="page-title">Add Plant</h1>
<div className="flex items-center gap-3 mb-1">
<a href="/garden" className="btn btn-ghost btn-icon" aria-label="Back to garden">
<svg
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<polyline points="15 18 9 12 15 6" />
</svg>
</a>
<h1 className="page-title">Add Plant</h1>
</div>
<PlantForm containers={containers} defaultContainerId={params.containerId ?? null} />
</div>
);