File tree Expand file tree Collapse file tree
src/frontend/src/routes/(needs_onboarding)/(navbar_and_footer) Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { prefetch } from '#queries/config' ;
2+ import { definePageMetaTags } from 'svelte-meta-tags' ;
23import type { PageLoad } from './$types' ;
34
4- export const load : PageLoad = async ( { parent, fetch } ) => {
5+ export const load : PageLoad = async ( { parent } ) => {
56 const { queryClient } = await parent ( ) ;
67
78 prefetch ( { queryClient : queryClient , fetch } ) ;
9+
10+ const pageTags = definePageMetaTags ( {
11+ title : 'Upload' ,
12+ description : 'Upload files to chithi server' ,
13+ openGraph : {
14+ title : 'Upload' ,
15+ description : 'Upload files to chithi server'
16+ }
17+ } ) ;
18+
19+ return { ...pageTags } ;
820} ;
Original file line number Diff line number Diff line change 11<script lang =" ts" >
2- import { onDestroy , onMount } from ' svelte' ;
2+ import { onDestroy } from ' svelte' ;
33 import { cubicOut } from ' svelte/easing' ;
44 import { Tween } from ' svelte/motion' ;
55 import { BACKEND_API } from ' #consts/backend' ;
8181 if (worker ) worker .terminate ();
8282 });
8383
84- // Chart Config - using shadcn CSS variables
84+ // Chart Config
8585 const chartConfig = {
8686 download: { label: ' Download' , color: ' var(--color-cyan-400)' },
8787 upload: { label: ' Upload' , color: ' var(--color-purple-500)' },
You can’t perform that action at this time.
0 commit comments