Add Medical button back to Quick Log
This commit is contained in:
parent
8bac2a3a7d
commit
415e92ada7
1 changed files with 4 additions and 1 deletions
|
|
@ -220,7 +220,7 @@ export default function HomePage() {
|
|||
{/* Quick Log - Keep as is */}
|
||||
<div className="px-4 mb-4">
|
||||
<h2 className="font-semibold mb-3 ml-1">Quick Log</h2>
|
||||
<div className="grid grid-cols-3 gap-2">
|
||||
<div className="grid grid-cols-4 gap-2">
|
||||
<button onClick={() => setModalType("feed")} className="flex flex-col items-center p-4 bg-white rounded-xl shadow-sm">
|
||||
<span className="text-3xl">🍼</span><span className="text-sm mt-1">Feed</span>
|
||||
</button>
|
||||
|
|
@ -230,6 +230,9 @@ export default function HomePage() {
|
|||
<button onClick={() => setModalType("diaper")} className="flex flex-col items-center p-4 bg-white rounded-xl shadow-sm">
|
||||
<span className="text-3xl">👶</span><span className="text-sm mt-1">Diaper</span>
|
||||
</button>
|
||||
<Link href="/medical" className="flex flex-col items-center p-4 bg-white rounded-xl shadow-sm">
|
||||
<span className="text-3xl">💊</span><span className="text-sm mt-1">Medical</span>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue