We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b37407f commit 5af7a3bCopy full SHA for 5af7a3b
types/index.d.ts
@@ -0,0 +1,25 @@
1
+
2
3
+export type NavItem = {
4
+ title: string
5
+ href: string
6
+ disabled?: boolean
7
+}
8
9
+export type MainNavItem = NavItem
10
11
12
+export type SiteConfig = {
13
+ name: string
14
+ description: string
15
+ url: string
16
+ ogImage: string
17
+ links: {
18
+ twitter: string
19
+ github: string
20
+ }
21
22
23
+export type LandingConfig = {
24
+ mainNav: MainNavItem[]
25
types/nav.ts
@@ -0,0 +1,7 @@
+export interface NavItem {
+ href?: string
+ external?: boolean
0 commit comments