diff --git a/Gemfile b/Gemfile index 4fda9e0..cb23c1b 100644 --- a/Gemfile +++ b/Gemfile @@ -2,4 +2,5 @@ source 'https://rubygems.org' +gem 'puma' gem 'sinatra' diff --git a/Gemfile.lock b/Gemfile.lock index bcc5df5..e4ce0a0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,6 +3,9 @@ GEM specs: mustermann (1.1.1) ruby2_keywords (~> 0.0.1) + nio4r (2.5.8) + puma (5.6.2) + nio4r (~> 2.0) rack (2.2.3) rack-protection (2.1.0) rack @@ -16,8 +19,10 @@ GEM PLATFORMS arm64-darwin-21 + x86_64-linux DEPENDENCIES + puma sinatra BUNDLED WITH diff --git a/public/css/main.css b/public/css/main.css new file mode 100644 index 0000000..b71ccce --- /dev/null +++ b/public/css/main.css @@ -0,0 +1,12 @@ +html, body { + margin: 0px; + height: 100%; +} + +#willpower { + background-image: url('/images/willpower.gif'); + background-position: center; + background-repeat: no-repeat; + background-size: cover; + height: 100%; +} diff --git a/public/images/willpower.gif b/public/images/willpower.gif new file mode 100644 index 0000000..eaad274 Binary files /dev/null and b/public/images/willpower.gif differ diff --git a/public/video/willpower.mp4 b/public/video/willpower.mp4 deleted file mode 100644 index 1bdf1bf..0000000 Binary files a/public/video/willpower.mp4 and /dev/null differ diff --git a/views/index.erb b/views/index.erb index a8da53a..8f91270 100644 --- a/views/index.erb +++ b/views/index.erb @@ -1,6 +1 @@ -

Ayy...

-

lmao

- +
diff --git a/views/layout.erb b/views/layout.erb index 04abbcc..57fd6a8 100644 --- a/views/layout.erb +++ b/views/layout.erb @@ -11,8 +11,9 @@ My Willpower + - <%= yield %> +<%= yield %>