diff --git a/src/router/index.ts b/src/router/index.ts
index cca7a9f..2e26eef 100644
--- a/src/router/index.ts
+++ b/src/router/index.ts
@@ -4,6 +4,7 @@ const PageNotFound = () => import('../views/PageNotFound.vue')
const PrivacyPageView = () => import('../views/PrivacyPageView.vue')
const HomepageView = () => import('../views/HomepageView.vue')
const CategoryView = () => import('../views/CategoryView.vue')
+const SearchPageView = () => import('../views/SearchPageView.vue')
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@@ -12,6 +13,10 @@ const router = createRouter({
path: '/',
component: HomepageView
},
+ {
+ path: '/search',
+ component: SearchPageView
+ },
{
path: '/game/:game',
component: CategoryView
diff --git a/src/views/SearchPageView.vue b/src/views/SearchPageView.vue
new file mode 100644
index 0000000..1c13c1e
--- /dev/null
+++ b/src/views/SearchPageView.vue
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+
+
+
Channels related to "{{ data.query }}"
+
+
+
+
+
Categories related to "{{ data.query }}"
+
+
+
+
+
Live channels with the tag "{{ data.query }}"
+
+
+
+
+
+
Channels with the tag "{{ data.query }}"
+
+
+
+
+
+
\ No newline at end of file