diff --git a/src/components/DiscoverChannel.astro b/src/components/DiscoverChannel.astro
new file mode 100644
index 0000000..8ce3b68
--- /dev/null
+++ b/src/components/DiscoverChannel.astro
@@ -0,0 +1,42 @@
+---
+// Properties
+const {
+ ChannelId
+} = Astro.props
+
+// Configuration
+import { DEFAULT_MEDIA_DATA_PROXY, DEFAULT_IMAGE_PROXY} from '@utils/GetConfig'
+
+// Fetch
+const channel = await fetch(DEFAULT_MEDIA_DATA_PROXY + "/api/v1/channels/" + ChannelId).then((response) => response.json());
+---
+
+
+
+

+
{channel.author}
+
+
+
\ No newline at end of file
diff --git a/src/pages/discover/tech.astro b/src/pages/discover/tech.astro
index fbf92ca..4d2cf9e 100644
--- a/src/pages/discover/tech.astro
+++ b/src/pages/discover/tech.astro
@@ -1,28 +1,26 @@
---
-import { changeLanguage } from "i18next";
+// Layout
+import Base from "@layouts/Default.astro";
-import Discover from "@layouts/Discover.astro";
// Properties
const { FetchData, CategoryName, CategoryDescription } = Astro.props;
-// Use on top of Default Layout
-import Base from "@layouts/Default.astro";
+
+// Components
+import DiscoverChannel from '@components/DiscoverChannel.astro'
+
// Configuration
import { DEFAULT_MEDIA_DATA_PROXY, DEFAULT_IMAGE_PROXY } from '@utils/GetConfig'
+
// Discover Data
-import Discover from "../../data/discover.json";
+import DiscoverData from "../../data/discover.json";
---
@@ -32,27 +30,4 @@ import Discover from "../../data/discover.json";
-
-
\ No newline at end of file
+
\ No newline at end of file