Remove Devcon 7 link from top header (#277)

This commit is contained in:
Kalidou Diagne
2025-02-05 00:58:43 +00:00
committed by GitHub
parent ba18c4fae8
commit 08ded5ef66

View File

@@ -1,44 +1,45 @@
import { MainNavProps } from "@/components/main-nav"
import { useTranslation } from "@/app/i18n/client"
import { LocaleTypes, fallbackLng, languageList } from "@/app/i18n/settings"
import { MainNavProps } from '@/components/main-nav'
import { useTranslation } from '@/app/i18n/client'
import { LocaleTypes, fallbackLng, languageList } from '@/app/i18n/settings'
export function useAppSettings(lang: LocaleTypes) {
const { t } = useTranslation(lang, "common")
const { t } = useTranslation(lang, 'common')
// get the active language label
const activeLanguage =
languageList.find((language) => language.key === lang)?.label ??
languageList.find((language) => language.key === fallbackLng)?.label
const MAIN_NAV: MainNavProps["items"] = [
const MAIN_NAV: MainNavProps['items'] = [
{
title: t("menu.home"),
href: "/",
title: t('menu.home'),
href: '/',
onlyMobile: true,
},
{
title: "Devcon 7",
href: "/devcon-7",
title: 'Devcon 7',
href: '/devcon-7',
onlyFooter: true,
},
{
title: t("menu.projectLibrary"),
href: "/projects",
title: t('menu.projectLibrary'),
href: '/projects',
},
{
title: t("menu.programs"),
href: "/programs",
title: t('menu.programs'),
href: '/programs',
},
{
title: t("menu.about"),
href: "/about",
title: t('menu.about'),
href: '/about',
},
{
title: t("menu.resources"),
href: "/resources",
title: t('menu.resources'),
href: '/resources',
},
{
title: t("menu.blog"),
href: "https://mirror.xyz/privacy-scaling-explorations.eth",
title: t('menu.blog'),
href: 'https://mirror.xyz/privacy-scaling-explorations.eth',
external: true,
onlyHeader: true,
},