feat: refactor layout and styling for improved responsiveness and accessibility; add Footer component

This commit is contained in:
sha
2025-05-15 15:49:56 +03:00
parent d30e2f9e0b
commit 9509ef0688
9 changed files with 342 additions and 330 deletions
+8
View File
@@ -0,0 +1,8 @@
import Home from './pages/Home.svelte';
import Preview from './pages/Preview.svelte';
// Define all routes for the application
export const routes = {
'/': Home,
'/preview/:id': Preview
};