+ (UINavigationController *)baseNavigationController {
    return [[HSNavigationController alloc] initWithRootViewController:[[HSSocialViewController alloc] initWithNibName:@"HSSocialViewController" bundle:nil]];
}

+ (NSArray *)menuItems {
    HSMenuItem *calendarMenuItem = [[HSMenuItem alloc] initWithTitle:@"Publishing" icon:@"\\" launchHubSpotApp:[HSSocial class]];
    calendarMenuItem.sectionTitle = @"Social";
    
    return @[calendarMenuItem];
}

+ (NSArray *)routesToRegister {
    HSRoute *newItemRoute = [HSRoute routeWithUrl:@"social/new" andAction:^BOOL(id<HSRoutingDelegate> routingDelegate, NSString *url, NSDictionary *parameters) {
    //  handle route, usually by suppying a UIViewController to the routingDelegate
    }];

    NSArray *routes = @[newItemRoute]; // could be more routes here too

    return routes;
}