Initial Paprika Next.js implementation
This commit is contained in:
22
lib/navigation.ts
Normal file
22
lib/navigation.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user