diff --git a/theweb.rb b/theweb.rb
index a531ce4..0a5cc8d 100644
--- a/theweb.rb
+++ b/theweb.rb
@@ -16,3 +16,12 @@
@the_number = rand(number_as_string)
erb :number
end
+
+post '/about' do
+ ryan_facts = ['Chuck Norris wears a Ryan Moser jersey',
+ 'Ryan is likely to have a squid on his head',
+ 'Ryan likes to do math for fun and profit',
+ 'The creature Ryan most resembles is a box turtle']
+ @ryan_fact = ryan_facts[rand( ryan_facts.length )]
+ erb :about
+end
\ No newline at end of file
diff --git a/views/about.erb b/views/about.erb
new file mode 100644
index 0000000..e658f80
--- /dev/null
+++ b/views/about.erb
@@ -0,0 +1,5 @@
+
Random Fact About Ryan:
+
<%= @ryan_fact %>
+
\ No newline at end of file
diff --git a/views/dashboard.erb b/views/dashboard.erb
index d2559c0..a12ea79 100644
--- a/views/dashboard.erb
+++ b/views/dashboard.erb
@@ -4,3 +4,6 @@
+
\ No newline at end of file
diff --git a/views/layout.erb b/views/layout.erb
index 8797f75..a9340a1 100644
--- a/views/layout.erb
+++ b/views/layout.erb
@@ -45,8 +45,8 @@
Randomizer