diff --git a/source/src/components/global/Sidebar.astro b/source/src/components/global/Sidebar.astro
index c30c013..9a54ad7 100755
--- a/source/src/components/global/Sidebar.astro
+++ b/source/src/components/global/Sidebar.astro
@@ -9,6 +9,11 @@ import {
version
} from '@root/package.json'
+// Components
+import CreatorInSidebar from '@components/CreatorInSidebar.astro'
+import { ViewTransitions } from 'astro:transitions';
+import { slide } from "astro/virtual-modules/transitions.js";
+
// Icons
import {
GraphUp,
@@ -18,45 +23,61 @@ import {
AppleImac2021Side,
EmojiTalkingHappy,
PeaceHand,
- HelpCircle,
- Server,
- CurveArray,
PlanetAlt,
-InputSearch,
-ProfileCircle,
-SettingsProfiles,
-Settings
+ InputSearch,
+ Settings,
+ LogIn
} from '@iconoir/vue'
// i18n
import i18next, { t } from "i18next"
import SettingsLayout from '@layouts/Settings.astro'
+
+// Supabase Data
+import { supabase } from "@library/supabase"
+const { data: { user } } = await supabase.auth.getUser()
+const id = user?.id
+
+// Is the user logged in?
+if (user?.id === "undefined") {
+ var Guest = true
+} else {
+ var Guest = false
+}
+
+// Get Channels
+const { data: channels, error } = await supabase
+ .from('channels')
+ .select('*')
+let { data: subs } = await supabase
+ .from('subs')
+ .select("*")
+ .eq('UserSubscribed', id)
---
+