forked from SRA-VJTI/sra-vjti.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.js
96 lines (95 loc) · 1.68 KB
/
navbar.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
const NavbarData = [
{
name: 'Our Lab',
link: '/', // Corporate page will be added
subMenu: [
{
name: 'About Us',
link: '/#About-us',
},
{
name: 'Activities',
link: '/activities',
},
// {
// name: 'Exhibition',
// link: '/', // Coming Up Soon
// },
{
name: 'Internship Diaries',
link: '/internships',
},
{
name: 'Blogs',
link: 'https://blog.sravjti.in/',
},
],
},
{
name: 'Projects',
link: '/projects',
subMenu: [
{
name: 'Flagship',
link: '/projects/flagship/',
},
{
name: 'Eklavya',
link: '/projects/eklavya/',
},
{
name: 'Ongoing',
link: '/projects/ongoing/',
},
],
},
{
name: 'Publications',
link: '/publications',
},
{
name: 'Teams',
link: '/teams',
subMenu: [
{
name: 'Faculty Incharge',
link: '/teams/teacherincharge/',
},
{
name: 'Current',
link: '/teams/current/',
},
{
name: 'Alumni',
link: '/teams/alumni/',
},
],
},
{
name: 'Achievements',
link: '/achievements',
},
{
name: 'Support Us',
link: '/sponsors', // A new page with two sections will be presented soon
subMenu: [
{
name: 'CSR',
link: '/corporateSupport/', // CSR links will be added soon
},
{
name: 'Sponsor us',
link: '/sponsors',
},
],
},
{
name: 'Contact Us',
link: '/contactus',
},
{
name: 'Startups',
link: '/startups',
},
];
export default NavbarData;