Merging in the React Refactor #56

Merged
azpect merged 51 commits from refactor/react into master 2025-12-28 22:27:52 -07:00
Showing only changes of commit 281fd673d3 - Show all commits

View File

@ -1,7 +1,10 @@
export default function ShoppingList() { export default function ShoppingList() {
return ( return (
<> <>
<p>ShoppingList</p> <div className="flex flex-col items-center justify-center min-h-[90vh] h-full gap-y-2">
<h1 className="text-4xl text-gray-800 font-semibold text-center">Page Under Construction </h1>
<p className="text-gray-700">Sit tight, this page is coming soon!</p>
</div>
</> </>
); );
} }