mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-04-23 03:01:03 -04:00
* feat: mastermap page * update text * feat: io * Renaming into Tor in JS to Master Map page * chore: updating MACI and MPC Framework status
36 lines
678 B
TypeScript
36 lines
678 B
TypeScript
import { MainNavProps } from "@/components/main-nav"
|
|
import { LABELS } from "@/app/labels"
|
|
|
|
export function useAppSettings() {
|
|
const MAIN_NAV: MainNavProps["items"] = [
|
|
{
|
|
title: LABELS.COMMON.MENU.ABOUT,
|
|
href: "/about",
|
|
},
|
|
{
|
|
title: LABELS.COMMON.MENU.PROJECTS,
|
|
href: "/projects",
|
|
},
|
|
{
|
|
title: LABELS.COMMON.MENU.RESEARCH,
|
|
href: "/research",
|
|
},
|
|
{
|
|
title: LABELS.COMMON.MENU.ECOSYSTEM,
|
|
href: "/ecosystem",
|
|
},
|
|
{
|
|
title: LABELS.COMMON.MENU.BLOG,
|
|
href: "/blog",
|
|
},
|
|
{
|
|
title: LABELS.COMMON.MENU.MASTER_MAP,
|
|
href: "/mastermap",
|
|
},
|
|
]
|
|
|
|
return {
|
|
MAIN_NAV,
|
|
}
|
|
}
|