Skip to content

Commit

Permalink
add home page to navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
olexh committed May 4, 2024
1 parent 31a77a8 commit da0f5dd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import MaterialSymbolsLightGridViewRounded from '~icons/material-symbols-light/g
import MaterialSymbolsCalendarClockRounded from '~icons/material-symbols/calendar-clock-rounded';
import MaterialSymbolsEditRounded from '~icons/material-symbols/edit-rounded';
import MaterialSymbolsStack from '~icons/material-symbols/stack';
import MaterialSymbolsHomeRounded from '~icons/material-symbols/home-rounded'

import Completed from '@/components/icons/watch-status/completed';
import Dropped from '@/components/icons/watch-status/dropped';
Expand Down Expand Up @@ -383,6 +384,13 @@ export const ERRORS: Record<string, Record<string, string>> = {
};

export const GENERAL_NAV_ROUTES: Hikka.NavRoute[] = [
{
slug: 'anime',
title_ua: 'Головна',
url: '/home',
icon: MaterialSymbolsHomeRounded,
visible: false,
},
{
slug: 'anime',
title_ua: 'Каталог',
Expand Down

0 comments on commit da0f5dd

Please sign in to comment.