-
\ No newline at end of file
+ import { ArrowLeft, ArrowRight, RefreshCw } from "lucide-svelte";
+
+ import IconButton from "../ui/IconButton.svelte";
+
+
+
-
-
\ No newline at end of file
+ export let value: string;
+ export let label: string;
+ export let icon: typeof SvelteComponent;
+ import { Tabs } from "bits-ui";
+ import type { SvelteComponent } from "svelte";
+
+
+
+
+
+
+
+ {label}
+
+
diff --git a/src/renderer/src/components/ui/MacSpace.svelte b/src/renderer/src/components/ui/MacSpace.svelte
index 45855db..996693f 100644
--- a/src/renderer/src/components/ui/MacSpace.svelte
+++ b/src/renderer/src/components/ui/MacSpace.svelte
@@ -1,3 +1,3 @@
{#if window.api.platform === "darwin"}
-
-{/if}
\ No newline at end of file
+
+{/if}
diff --git a/src/renderer/src/components/ui/Spinner.svelte b/src/renderer/src/components/ui/Spinner.svelte
index d20a684..14d19f1 100644
--- a/src/renderer/src/components/ui/Spinner.svelte
+++ b/src/renderer/src/components/ui/Spinner.svelte
@@ -1,50 +1,50 @@
- Share what your listening to/watching with your discord friends.
-
-
-
-
+
+
Discord Presence
+ Share what your listening to/watching with your discord friends.
+
+
+
+
diff --git a/website/svelte.config.js b/website/svelte.config.js
index 4a82086..973bdc9 100644
--- a/website/svelte.config.js
+++ b/website/svelte.config.js
@@ -1,18 +1,18 @@
-import adapter from '@sveltejs/adapter-auto';
-import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
+import adapter from "@sveltejs/adapter-auto";
+import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
/** @type {import('@sveltejs/kit').Config} */
const config = {
- // Consult https://kit.svelte.dev/docs/integrations#preprocessors
- // for more information about preprocessors
- preprocess: vitePreprocess(),
+ // Consult https://kit.svelte.dev/docs/integrations#preprocessors
+ // for more information about preprocessors
+ preprocess: vitePreprocess(),
- kit: {
- // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
- // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
- // See https://kit.svelte.dev/docs/adapters for more information about adapters.
- adapter: adapter()
- }
+ kit: {
+ // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
+ // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
+ // See https://kit.svelte.dev/docs/adapters for more information about adapters.
+ adapter: adapter(),
+ },
};
export default config;
diff --git a/website/tailwind.config.ts b/website/tailwind.config.ts
index 580ab11..79aa9f4 100644
--- a/website/tailwind.config.ts
+++ b/website/tailwind.config.ts
@@ -6,10 +6,10 @@ export default {
theme: {
extend: {
fontFamily: {
- sans: ["Inter", "sans-serif"]
- }
- }
+ sans: ["Inter", "sans-serif"],
+ },
+ },
},
- plugins: [require("@tailwindcss/typography")]
+ plugins: [require("@tailwindcss/typography")],
} as Config;
diff --git a/website/vite.config.ts b/website/vite.config.ts
index bbf8c7d..80864b9 100644
--- a/website/vite.config.ts
+++ b/website/vite.config.ts
@@ -1,6 +1,6 @@
-import { sveltekit } from '@sveltejs/kit/vite';
-import { defineConfig } from 'vite';
+import { sveltekit } from "@sveltejs/kit/vite";
+import { defineConfig } from "vite";
export default defineConfig({
- plugins: [sveltekit()]
+ plugins: [sveltekit()],
});