-
-
- {#if relay.profile?.icon}
-

- {:else}
-
- {/if}
+
+
+
+ Discover Spaces
+ Find communities all across the nostr network
+
+
+ {#each relaySearch.searchOptions(term).slice(0, limit) as relay (relay.url)}
+
- {#if gt($wotGraph.get(relay.url)?.size, 0)}
-
- {/if}
-
- {/each}
-
+ {/if}
+
+ {/each}
+
+
diff --git a/src/routes/discover/themes/+page.svelte b/src/routes/discover/themes/+page.svelte
deleted file mode 100644
index ce2d0b396..000000000
--- a/src/routes/discover/themes/+page.svelte
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
- Discover Themes
- Make your community feel like home
-
-
-
- {#each searchThemes.searchValues(term) as name}
-
-
{name}
-
-
- {/each}
-
-
diff --git a/tailwind.config.js b/tailwind.config.js
index 8a59ca2d0..9f0df05ff 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -1,4 +1,7 @@
import daisyui from "daisyui"
+import themes from "daisyui/src/theming/themes"
+
+console.log(themes["dark"])
/** @type {import('tailwindcss').Config} */
export default {
@@ -20,38 +23,11 @@ export default {
plugins: [daisyui],
daisyui: {
themes: [
- "light",
- "dark",
- "cupcake",
- "bumblebee",
- "emerald",
- "corporate",
- "synthwave",
- "retro",
- "cyberpunk",
- "valentine",
- "halloween",
- "garden",
- "forest",
- "aqua",
- "lofi",
- "pastel",
- "fantasy",
- "wireframe",
- "black",
- "luxury",
- "dracula",
- "cmyk",
- "autumn",
- "business",
- "acid",
- "lemonade",
- "night",
- "coffee",
- "winter",
- "dim",
- "nord",
- "sunset",
+ {
+ dark: {
+ ...themes["dark"],
+ },
+ },
],
},
}