├── .env.example ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .yarnrc.yml ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── package.json ├── src ├── app.d.ts ├── app.html ├── lib │ ├── Check.svelte │ ├── FooterText.svelte │ └── utils │ │ └── chunks.ts ├── main.scss └── routes │ ├── +layout.svelte │ ├── +page.svelte │ ├── download │ └── [id] │ │ └── +page.svelte │ └── sso_login │ └── +page.svelte ├── static ├── assets │ └── fonts │ │ ├── LibreFranklin-VariableFont_wght.ttf │ │ ├── pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2 │ │ ├── pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2 │ │ ├── pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2 │ │ ├── pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2 │ │ ├── pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2 │ │ └── pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2 └── images │ ├── background.jpg │ ├── horizon-send-image.png │ └── horizon.png ├── svelte.config.js ├── tsconfig.json ├── vite.config.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/package.json -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/src/app.html -------------------------------------------------------------------------------- /src/lib/Check.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/src/lib/Check.svelte -------------------------------------------------------------------------------- /src/lib/FooterText.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/src/lib/FooterText.svelte -------------------------------------------------------------------------------- /src/lib/utils/chunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/src/lib/utils/chunks.ts -------------------------------------------------------------------------------- /src/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/src/main.scss -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/download/[id]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/src/routes/download/[id]/+page.svelte -------------------------------------------------------------------------------- /src/routes/sso_login/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/src/routes/sso_login/+page.svelte -------------------------------------------------------------------------------- /static/assets/fonts/LibreFranklin-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/static/assets/fonts/LibreFranklin-VariableFont_wght.ttf -------------------------------------------------------------------------------- /static/assets/fonts/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/static/assets/fonts/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2 -------------------------------------------------------------------------------- /static/assets/fonts/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/static/assets/fonts/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2 -------------------------------------------------------------------------------- /static/assets/fonts/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/static/assets/fonts/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2 -------------------------------------------------------------------------------- /static/assets/fonts/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/static/assets/fonts/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2 -------------------------------------------------------------------------------- /static/assets/fonts/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/static/assets/fonts/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2 -------------------------------------------------------------------------------- /static/assets/fonts/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/static/assets/fonts/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2 -------------------------------------------------------------------------------- /static/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/static/images/background.jpg -------------------------------------------------------------------------------- /static/images/horizon-send-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/static/images/horizon-send-image.png -------------------------------------------------------------------------------- /static/images/horizon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/static/images/horizon.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/vite.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/httpjamesm/horizon-send/HEAD/yarn.lock --------------------------------------------------------------------------------