File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,6 @@ const mainNav: NavItem[] = [
2626 { href : "/about-us/partners" , label : "Partners" } ,
2727 ] ,
2828 } ,
29- { href : "/upcoming-event" , label : "Upcoming Event" } ,
30- { href : "/our-work" , label : "Our Work" } ,
31- { href : "/blog" , label : "Blog" } ,
3229 {
3330 href : "/join-us" ,
3431 label : "Join Us" ,
@@ -44,7 +41,12 @@ const mainNav: NavItem[] = [
4441/**
4542 * Routes that should be included in the sitemap but hidden from the header navigation.
4643 */
47- const sitemapOnlyNav : NavItem [ ] = resources . map ( ( r ) => ( { href : `/resources/${ r . slug } ` , label : r . title } ) ) ;
44+ const sitemapOnlyNav : NavItem [ ] = [
45+ { href : "/upcoming-event" , label : "Upcoming Event" } ,
46+ { href : "/our-work" , label : "Our Work" } ,
47+ { href : "/blog" , label : "Blog" } ,
48+ ...resources . map ( ( r ) => ( { href : `/resources/${ r . slug } ` , label : r . title } ) ) ,
49+ ] ;
4850
4951export const siteConfig = {
5052 title : "ALPHA HKU" ,
You can’t perform that action at this time.
0 commit comments