|
1 | 1 | export interface NavDropdownItem { |
2 | | - label: string; |
3 | | - href: string; |
4 | | - description?: string; |
| 2 | + label: string; |
| 3 | + href: string; |
| 4 | + description?: string; |
5 | 5 | } |
6 | 6 |
|
7 | 7 | export interface NavDropdownColumn { |
8 | | - title: string; |
9 | | - items: NavDropdownItem[]; |
| 8 | + title: string; |
| 9 | + items: NavDropdownItem[]; |
10 | 10 | } |
11 | 11 |
|
12 | 12 | export interface NavDropdown { |
13 | | - id: string; |
14 | | - label: string; |
15 | | - columns: NavDropdownColumn[]; |
| 13 | + id: string; |
| 14 | + label: string; |
| 15 | + columns: NavDropdownColumn[]; |
16 | 16 | } |
17 | 17 |
|
18 | 18 | export interface NavDirectLink { |
19 | | - href: string; |
20 | | - label: string; |
| 19 | + href: string; |
| 20 | + label: string; |
21 | 21 | } |
22 | 22 |
|
23 | 23 | export const navDropdowns: NavDropdown[] = [ |
24 | | - { |
25 | | - id: 'resources', |
26 | | - label: 'Resources', |
27 | | - columns: [ |
28 | | - { |
29 | | - title: 'Learn', |
30 | | - items: [ |
31 | | - { label: 'Documentation', href: '/docs', description: 'Guides and references' }, |
32 | | - { label: 'FAQ', href: '/faq', description: 'Common questions' }, |
33 | | - { label: 'GitHub', href: 'https://github.com/reifydb/reifydb', description: 'Source code' }, |
| 24 | + { |
| 25 | + id: 'resources', |
| 26 | + label: 'Resources', |
| 27 | + columns: [ |
| 28 | + { |
| 29 | + title: 'Learn', |
| 30 | + items: [ |
| 31 | + {label: 'Documentation', href: '/docs', description: 'Guides and references'}, |
| 32 | + {label: 'FAQ', href: '/faq', description: 'Common questions'}, |
| 33 | + {label: 'GitHub', href: 'https://github.com/reifydb/reifydb', description: 'Source code'}, |
| 34 | + ], |
| 35 | + }, |
| 36 | + { |
| 37 | + title: 'Connect', |
| 38 | + items: [ |
| 39 | + {label: 'Contact', href: '/contact', description: 'Get in touch'}, |
| 40 | + {label: 'Support', href: '/support', description: 'Technical help'}, |
| 41 | + {label: 'Book a Call', href: 'https://cal.com/reifydb/30min', description: 'Schedule a demo'}, |
| 42 | + ], |
| 43 | + }, |
34 | 44 | ], |
35 | | - }, |
36 | | - { |
37 | | - title: 'Connect', |
38 | | - items: [ |
39 | | - { label: 'Contact', href: '/contact', description: 'Get in touch' }, |
40 | | - { label: 'Support', href: '/support', description: 'Technical help' }, |
41 | | - { label: 'Book a Call', href: 'https://cal.com/reifydb/30min', description: 'Schedule a demo' }, |
| 45 | + }, |
| 46 | + { |
| 47 | + id: 'company', |
| 48 | + label: 'Company', |
| 49 | + columns: [ |
| 50 | + { |
| 51 | + title: 'About', |
| 52 | + items: [ |
| 53 | + {label: 'Values', href: '/company/values'}, |
| 54 | + {label: 'Mission', href: '/company/mission'}, |
| 55 | + ], |
| 56 | + }, |
42 | 57 | ], |
43 | | - }, |
44 | | - ], |
45 | | - }, |
46 | | - { |
47 | | - id: 'company', |
48 | | - label: 'Company', |
49 | | - columns: [ |
50 | | - { |
51 | | - title: 'About', |
52 | | - items: [ |
53 | | - { label: 'Values', href: '/company/values', description: 'What we stand for' }, |
54 | | - { label: 'Mission', href: '/company/mission', description: 'Why we exist' }, |
55 | | - ], |
56 | | - }, |
57 | | - ], |
58 | | - }, |
| 58 | + }, |
59 | 59 | ]; |
60 | 60 |
|
61 | 61 | export const navDirectLinks: NavDirectLink[] = [ |
62 | | - { href: '/docs', label: 'Docs' }, |
63 | | - { href: '/#pricing', label: 'Pricing' }, |
| 62 | + {href: '/docs', label: 'Docs'}, |
| 63 | + {href: '/#pricing', label: 'Pricing'}, |
64 | 64 | ]; |
0 commit comments