diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 95f2403..235ac57 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -53,4 +53,4 @@ jobs:
steps:
- name: Deploy
id: deployment
- uses: actions/deploy-pages@v4
\ No newline at end of file
+ uses: actions/deploy-pages@v4
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 7e56954..9f7e19d 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -1,11 +1,11 @@
name: Liniting using Eslint
on:
- pull_request_target:
- types:
- - opened
- - edited
- - synchronize
+ pull_request_target:
+ types:
+ - opened
+ - edited
+ - synchronize
env:
NODE_VERSION: 20.12.0
@@ -14,7 +14,7 @@ jobs:
linting:
name: Linting
runs-on: ubuntu-latest
- steps:
+ steps:
- name: Install NodeJS
uses: actions/setup-node@v4
with:
diff --git a/src/app.html b/src/app.html
index f0cb373..7990fa8 100644
--- a/src/app.html
+++ b/src/app.html
@@ -3,11 +3,35 @@
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
JellyFish
%sveltekit.head%
diff --git a/src/lib/data/features.js b/src/lib/data/features.js
index 41e4054..7ae68ea 100644
--- a/src/lib/data/features.js
+++ b/src/lib/data/features.js
@@ -1,28 +1,30 @@
-"use strict";
-var __importDefault = (this && this.__importDefault) || function (mod) {
- return (mod && mod.__esModule) ? mod : { "default": mod };
-};
-Object.defineProperty(exports, "__esModule", { value: true });
+'use strict';
+var __importDefault =
+ (this && this.__importDefault) ||
+ function (mod) {
+ return mod && mod.__esModule ? mod : { default: mod };
+ };
+Object.defineProperty(exports, '__esModule', { value: true });
exports.features = void 0;
-var coral_webp_1 = __importDefault(require("../assets/images/coral.webp"));
-var crab_webp_1 = __importDefault(require("../assets/images/crab.webp"));
-var dodo_webp_1 = __importDefault(require("../assets/images/dodo.webp"));
+var coral_webp_1 = __importDefault(require('../assets/images/coral.webp'));
+var crab_webp_1 = __importDefault(require('../assets/images/crab.webp'));
+var dodo_webp_1 = __importDefault(require('../assets/images/dodo.webp'));
// Emoji source: https://symbl.cc/
exports.features = [
- {
- title: 'fast',
- description: 'JellyFish relays are fast as lightning',
- image: crab_webp_1.default
- },
- {
- title: 'easy',
- description: 'JellyFish relays are easy to use',
- image: dodo_webp_1.default
- },
- {
- title: 'safe',
- description: 'Your private notes need auth',
- image: coral_webp_1.default
- }
+ {
+ title: 'fast',
+ description: 'JellyFish relays are fast as lightning',
+ image: crab_webp_1.default
+ },
+ {
+ title: 'easy',
+ description: 'JellyFish relays are easy to use',
+ image: dodo_webp_1.default
+ },
+ {
+ title: 'safe',
+ description: 'Your private notes need auth',
+ image: coral_webp_1.default
+ }
];
-//# sourceMappingURL=features.js.map
\ No newline at end of file
+//# sourceMappingURL=features.js.map
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index 4a7df5b..ccf317c 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -49,10 +49,10 @@
diff --git a/static/.well-known/nostr.json b/static/.well-known/nostr.json
index 5055a0d..db1d89f 100644
--- a/static/.well-known/nostr.json
+++ b/static/.well-known/nostr.json
@@ -1,6 +1,6 @@
{
- "names": {
- "_": "bf2bee5281149c7c350f5d12ae32f514c7864ff10805182f4178538c2c421007",
- "bot":"6226b4bee6dc3015d549e812ca84bbc6117156fed079257291f956580519e646"
- }
+ "names": {
+ "_": "bf2bee5281149c7c350f5d12ae32f514c7864ff10805182f4178538c2c421007",
+ "bot": "6226b4bee6dc3015d549e812ca84bbc6117156fed079257291f956580519e646"
+ }
}
diff --git a/svelte.config.js b/svelte.config.js
index 0ae19c5..00b16d3 100644
--- a/svelte.config.js
+++ b/svelte.config.js
@@ -3,7 +3,8 @@ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
- adapter: adapter({ fallback: '404.html' }), paths: {
+ adapter: adapter({ fallback: '404.html' }),
+ paths: {
base: process.argv.includes('dev') ? '' : process.env.BASE_PATH
}
},
diff --git a/tsconfig.json b/tsconfig.json
index 466d400..5e92e4d 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -17,4 +17,4 @@
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
-}
\ No newline at end of file
+}
diff --git a/vite.config.ts b/vite.config.ts
index fce9e87..bbf8c7d 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -2,5 +2,5 @@ import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
- plugins: [sveltekit()],
+ plugins: [sveltekit()]
});