Added a for you page

This commit is contained in:
Dominic Villemure
2024-08-25 16:16:41 -04:00
parent 70b945de5f
commit e5891d888d
3 changed files with 103 additions and 1 deletions

View File

@@ -36,7 +36,7 @@
variant="plain"
icon
class="flex flex-row justify-center"
@click="explorerHandler"
@click="feedHandler"
>
<v-icon>mdi-television</v-icon>
</v-btn>
@@ -184,6 +184,10 @@ const explorerHandler = () => {
router.push('/explorer');
};
const feedHandler = () => {
router.push('/feed');
};
const handleClickOutside = (event) => {
if (!event.target.closest('.search-container')) {
showSearch.value = false;