added more gardens

This commit is contained in:
Maggie Appleton 2021-09-06 16:55:45 +01:00
parent 8e4d516d85
commit 185109c782
15 changed files with 70 additions and 6 deletions

View file

@ -55,7 +55,7 @@ export default function Index({ gardens }) {
}}
className="flex flex-wrap mt-24"
>
{gardens.map((garden) => (
{gardens.slice(0, 7).map((garden) => (
<Card garden={garden} />
))}
</motion.ul>