mirror of
https://github.com/isledecomp/isle.pizza.git
synced 2026-02-28 13:57:38 +00:00
- Replace vanilla JS with Svelte 5 components - Add Vite build system with Terser optimization - Reorganize assets into src/ and public/ directories - Update README with setup instructions
10 lines
254 B
Svelte
10 lines
254 B
Svelte
<script>
|
|
function goBack() {
|
|
history.back();
|
|
}
|
|
</script>
|
|
|
|
<span class="page-back-button" role="button" aria-label="Go back to main menu" onclick={goBack} onkeydown={(e) => e.key === 'Enter' && goBack()} tabindex="0">
|
|
← Back
|
|
</span>
|