Simplify homepage navigation.

This commit is contained in:
Kavin
2026-03-28 11:43:47 +05:30
parent 2386d728e6
commit 2754d01ed7

View File

@@ -1,7 +1,7 @@
<template>
<nav class="relative flex w-full flex-wrap items-center justify-center px-2 pb-2.5 sm:px-4">
<div class="flex flex-1 justify-start">
<router-link class="flex items-center font-sans text-3xl font-bold" :to="homePagePath"
<router-link class="flex items-center font-sans text-3xl font-bold" to="/"
><img
alt="logo"
src="/img/icons/logo.svg"
@@ -159,8 +159,6 @@ const suggestionsVisible = ref(false);
const showTopNav = ref(false);
const registrationDisabled = ref(false);
const homePagePath = import.meta.env.BASE_URL;
const shouldShowLogin = computed(() => {
return getAuthToken() == null;
});