I'm most proud of the outcome of my third Svelte project. I tried to learn new things, particularly exploring the looping functionalities in HTML. For example, to render the items of the list, I used the following code:
{#each Ingredients as Ingredients}
li class="flex gap-7 items-center ml-2"
span class="w-1 h-1 rounded-full bg-primary-dark-raspberry"/span
span{Ingredients}/span
/li
{/each}
Looking ahead, I intend to continue exploring and learning more about this technology. There will definitely be more projects with Svelte coming soon. If I were to do something differently next time, I would probably focus more on the overall project structure and organization to improve readability and maintainability.