diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index 497dd31..22a9617 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -13,13 +13,14 @@
-
- {#if data.user && data.user.username != ""}
- Welcome {data.user.first_name}. Let's get Exploring!
- {:else}
- Welcome. Let's get Exploring!
- {/if}
-
+ {#if data.user && data.user.username != ""}
+
+ {:else}
+
+ {/if}
+
diff --git a/tailwind.config.js b/tailwind.config.js
index 2d48b1b..389e6e9 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -6,6 +6,6 @@ export default {
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
daisyui: {
- themes: ["night"],
+ themes: ["sunset"],
},
};