23 lines
657 B
TypeScript
23 lines
657 B
TypeScript
export const navItems = [
|
|
{ href: "/press", label: "Press", key: "press" },
|
|
{ href: "/judging", label: "Judging", key: "judging" },
|
|
{ href: "/scholarly", label: "Scholarly Articles", key: "scholarly" },
|
|
{ href: "/services", label: "Services", key: "services" },
|
|
{ href: "/why", label: "Why Paprika", key: "why" }
|
|
] as const;
|
|
|
|
export const resourceItems = [
|
|
{
|
|
href: "/faq",
|
|
key: "faq",
|
|
label: "Frequently Asked Questions",
|
|
description: "Common questions before you start"
|
|
},
|
|
{
|
|
href: "/resources",
|
|
key: "resources",
|
|
label: "O-1A Criteria Overview",
|
|
description: "All 8 O-1A criteria, explained"
|
|
}
|
|
] as const;
|