I usually have a controller I call 'main', with an action called 'index' for my home page. Then I have a named route:
map.home '/', :controller => 'main', :action => 'index'
I can add my About, Terms and Conditions, and other random pages that don't fit anywhere else in the main controller.