Add SuccessToast component and pinLogo asset***

***Update saveEdit function in adventureService.ts***
***Remove unnecessary buttons in Navbar.svelte***
***Add EditModal component***
***Update Footer.svelte with pinLogo and copyright information
This commit is contained in:
Sean Morley
2024-03-31 00:49:42 +00:00
parent 960062b499
commit bf640bc433
7 changed files with 133 additions and 39 deletions

View File

@@ -0,0 +1,9 @@
<script lang="ts">
export let action:string;
</script>
<div class="toast toast-top toast-end z-50">
<div class="alert alert-info">
<span>Adventure {action} successfully!</span>
</div>
</div>