mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-11 07:08:07 -05:00
48 lines
902 B
TypeScript
48 lines
902 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.HOME,
|
|
href: "/",
|
|
onlyMobile: true,
|
|
},
|
|
{
|
|
title: "Devcon 7",
|
|
href: "/devcon-7",
|
|
onlyFooter: true,
|
|
},
|
|
{
|
|
title: LABELS.COMMON.MENU.PROJECTS,
|
|
href: "/projects",
|
|
},
|
|
{
|
|
title: LABELS.COMMON.MENU.RESEARCH,
|
|
href: "/research",
|
|
},
|
|
{
|
|
title: LABELS.COMMON.MENU.PROGRAMS,
|
|
href: "/programs",
|
|
onlyFooter: true,
|
|
},
|
|
{
|
|
title: LABELS.COMMON.MENU.ABOUT,
|
|
href: "/about",
|
|
},
|
|
{
|
|
title: LABELS.COMMON.MENU.RESOURCES,
|
|
href: "/resources",
|
|
},
|
|
{
|
|
title: LABELS.COMMON.MENU.BLOG,
|
|
href: "/blog",
|
|
onlyHeader: true,
|
|
},
|
|
]
|
|
|
|
return {
|
|
MAIN_NAV,
|
|
}
|
|
}
|