diff --git a/.gitignore b/.gitignore index 86923a0..f1dd025 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /.sass-cache/ /ig_media.db +/public/style/*.css diff --git a/DundoFarms.rb b/DundoFarms.rb index 8527567..0b21b42 100644 --- a/DundoFarms.rb +++ b/DundoFarms.rb @@ -22,4 +22,12 @@ get '/critters' do erb :critters end +get '/about' do + erb :about +end + +get '/merch' do + erb :merch +end + require './models' diff --git a/style/_shared.scss b/style/_shared.scss index 00d65bf..7a7ad12 100644 --- a/style/_shared.scss +++ b/style/_shared.scss @@ -92,8 +92,15 @@ body { } footer { - padding: 36px 12px; - flex-shrink: 0; + display: flex; + padding: 12px 12px; + justify-content: center; height: 30px; + + .copyright { + color: $dundo-brown; + font-size: 11px; + font-family: sans-serif; + } } } diff --git a/views/about.erb b/views/about.erb new file mode 100644 index 0000000..e69de29 diff --git a/views/layout.erb b/views/layout.erb index 56cd12c..e91ed4f 100644 --- a/views/layout.erb +++ b/views/layout.erb @@ -43,7 +43,7 @@