feat: add placeholder page for new item creation form

This commit is contained in:
Greg 2025-05-18 21:19:35 +02:00
parent 11188330fe
commit 64f7e3b6f3

View File

@ -0,0 +1,11 @@
// app/add-item/page.js
export default function AddItemPage() {
return (
<div>
<h1>Add New Item</h1>
<p>This is where the form to add a new item will go.</p>
{/* You can add your form component or elements here */}
</div>
);
}