Updates flower descriptions

This commit is contained in:
Mihovil Ilakovac 2023-06-30 16:24:04 +02:00
parent a948a5505a
commit 0ca1f95d7f

View File

@ -100,7 +100,7 @@ const MainPage = () => {
{ {
name: "TodoApp", name: "TodoApp",
description: description:
"A simple todo app with one main page that lists all the tasks. I can create new tasks, or toggle existing ones." + "A simple todo app with one main page that lists all the tasks. I can create new tasks, or toggle existing ones. " +
"User owns tasks. User can only see and edit their own tasks. Tasks are saved in the database.", "User owns tasks. User can only see and edit their own tasks. Tasks are saved in the database.",
color: availableColors.find((color) => color.name === "rose"), color: availableColors.find((color) => color.name === "rose"),
}, },
@ -113,7 +113,7 @@ const MainPage = () => {
{ {
name: "FlowerShop", name: "FlowerShop",
description: description:
"A flower shop with a main page that lists all the flowers. I can create new flowers, or toggle existing ones." + "A flower shop with a main page that lists all the flowers. I can create new flowers, or 'water' existing ones. " +
"User owns flowers. User can only see and edit their own flowers. Flowers are saved in the database.", "User owns flowers. User can only see and edit their own flowers. Flowers are saved in the database.",
color: availableColors.find((color) => color.name === "emerald"), color: availableColors.find((color) => color.name === "emerald"),
}, },