diff --git a/frontend/src/app.d.ts b/frontend/src/app.d.ts index f59b884..54aac2e 100644 --- a/frontend/src/app.d.ts +++ b/frontend/src/app.d.ts @@ -6,7 +6,15 @@ declare global { // interface Locals {} // interface PageData {} // interface Platform {} + + interface Route { + name: string; + duration: number; + image: string; + } } } -export {}; +export { + Route +}; diff --git a/frontend/src/routes/components/BottomAppBar.svelte b/frontend/src/lib/components/BottomAppBar.svelte similarity index 100% rename from frontend/src/routes/components/BottomAppBar.svelte rename to frontend/src/lib/components/BottomAppBar.svelte diff --git a/frontend/src/lib/components/Header.svelte b/frontend/src/lib/components/Header.svelte new file mode 100644 index 0000000..aee47e6 --- /dev/null +++ b/frontend/src/lib/components/Header.svelte @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/frontend/src/routes/components/Path.svelte b/frontend/src/lib/components/Path.svelte similarity index 94% rename from frontend/src/routes/components/Path.svelte rename to frontend/src/lib/components/Path.svelte index 625d90e..5cf2c9c 100644 --- a/frontend/src/routes/components/Path.svelte +++ b/frontend/src/lib/components/Path.svelte @@ -1,10 +1,10 @@ - +
logo
diff --git a/frontend/src/routes/components/Splash.svelte b/frontend/src/lib/components/Splash.svelte similarity index 100% rename from frontend/src/routes/components/Splash.svelte rename to frontend/src/lib/components/Splash.svelte diff --git a/frontend/src/routes/+layout.svelte b/frontend/src/routes/+layout.svelte index 8c0e0c8..053544f 100644 --- a/frontend/src/routes/+layout.svelte +++ b/frontend/src/routes/+layout.svelte @@ -1,5 +1,5 @@