diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 3897265..0000000 --- a/.eslintignore +++ /dev/null @@ -1,13 +0,0 @@ -.DS_Store -node_modules -/build -/.svelte-kit -/package -.env -.env.* -!.env.example - -# Ignore files for PNPM, NPM and YARN -pnpm-lock.yaml -package-lock.json -yarn.lock diff --git a/.eslintrc.cjs b/.eslintrc.cjs deleted file mode 100644 index 814af8c..0000000 --- a/.eslintrc.cjs +++ /dev/null @@ -1,15 +0,0 @@ -module.exports = { - root: true, - extends: ["eslint:recommended", "prettier"], - plugins: ["svelte3"], - overrides: [{ files: ["*.svelte"], processor: "svelte3/svelte3" }], - parserOptions: { - sourceType: "module", - ecmaVersion: 2020, - }, - env: { - browser: true, - es2017: true, - node: true, - }, -}; diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index 3897265..0000000 --- a/.prettierignore +++ /dev/null @@ -1,13 +0,0 @@ -.DS_Store -node_modules -/build -/.svelte-kit -/package -.env -.env.* -!.env.example - -# Ignore files for PNPM, NPM and YARN -pnpm-lock.yaml -package-lock.json -yarn.lock diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index a77fdde..0000000 --- a/.prettierrc +++ /dev/null @@ -1,9 +0,0 @@ -{ - "useTabs": true, - "singleQuote": true, - "trailingComma": "none", - "printWidth": 100, - "plugins": ["prettier-plugin-svelte"], - "pluginSearchDirs": ["."], - "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] -} diff --git a/bun.lockb b/bun.lockb index 75e2a62..7a631c8 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/src/components/Link.svelte b/src/components/Link.svelte deleted file mode 100644 index 4b7d42b..0000000 --- a/src/components/Link.svelte +++ /dev/null @@ -1,26 +0,0 @@ - - -{#if back} - - - - -{:else if away} - - - - ↗ - - -{:else} - - - - → - - -{/if} \ No newline at end of file diff --git a/src/components/Marquee.svelte b/src/components/Marquee.svelte deleted file mode 100644 index 6400624..0000000 --- a/src/components/Marquee.svelte +++ /dev/null @@ -1,8 +0,0 @@ - - - - - TEAM ILLUSION - diff --git a/src/components/MarqueeContainer.svelte b/src/components/MarqueeContainer.svelte deleted file mode 100644 index 156c2a1..0000000 --- a/src/components/MarqueeContainer.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - - -
- {#each marqueeDirections as direction} - - {/each} - - - diff --git a/src/components/Rise.svelte b/src/components/Rise.svelte deleted file mode 100644 index fe88ea7..0000000 --- a/src/components/Rise.svelte +++ /dev/null @@ -1,12 +0,0 @@ - - -
-{#each text.split(" ") as word, index} -

{`${word}`}

-{/each} -
\ No newline at end of file diff --git a/static/emojis/magic.webp b/static/emojis/magic.webp deleted file mode 100644 index 7ba8bf8..0000000 Binary files a/static/emojis/magic.webp and /dev/null differ diff --git a/static/emojis/robotics.webp b/static/emojis/robotics.webp deleted file mode 100644 index 57d79ef..0000000 Binary files a/static/emojis/robotics.webp and /dev/null differ diff --git a/static/emojis/wand.png b/static/emojis/wand.png deleted file mode 100644 index dc5eda4..0000000 Binary files a/static/emojis/wand.png and /dev/null differ diff --git a/static/emojis/wand.webp b/static/emojis/wand.webp deleted file mode 100644 index 2e2f9c8..0000000 Binary files a/static/emojis/wand.webp and /dev/null differ diff --git a/uno.config.ts b/uno.config.ts index 2ae88db..1403153 100644 --- a/uno.config.ts +++ b/uno.config.ts @@ -5,10 +5,6 @@ export default defineConfig({ presets: [presetUno()], rules: [ // cursor - [ - /^cursor-emoji-(\w+)$/, - ([, w]) => ({ cursor: `url('/emojis/${w}.webp') 64 64, auto` }), - ], [/^spacing-(\d)$/, ([, d]) => ({ "letter-spacing": `${d}px` })], ["font-spacemono", { "font-family": "Space Mono" }], ],