class SiteController < ApplicationController
  def index
    @title = "Witamy w RailsSpace!"
  end

  def about
    @title = "O RailsSpace"
  end

  def help
    @title ="RailsSpace: Pomoc"
  end
end