isle.pizza/src/core/navigation.js
Christian Semmler 804a87e687
Migrate frontend to Svelte 5
- 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
2026-01-11 19:10:16 -07:00

12 lines
238 B
JavaScript

// Navigation utilities
import { currentPage } from '../stores.js';
export function navigateTo(page) {
currentPage.set(page);
history.pushState({ page }, '', '#' + page);
}
export function navigateBack() {
history.back();
}