diff --git a/app/assets/images/hero.jpg b/app/assets/images/hero.jpg new file mode 100644 index 0000000..46cd25a Binary files /dev/null and b/app/assets/images/hero.jpg differ diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index b2dd0b1..60ae2b2 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -14,11 +14,17 @@ *= require_self */ @import url('https://fonts.googleapis.com/css2?family=Fleur+De+Leah&display=swap'); -/* html, body { */ -/* margin: 0; */ -/* padding: 0; */ -/* height: 100%; */ -/* } */ +html, body { + margin: 0; + padding: 0; + height: 100%; +} + + +.hero-bg { + background-image: url("assets/hero.jpg"); + background-size: cover; +} /* #container { */ /* background-color: darkseagreen; */ diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb index ee6d531..59eb139 100644 --- a/app/views/home/index.html.erb +++ b/app/views/home/index.html.erb @@ -1 +1,45 @@ -

Hello, Rails!

+ +
+ + +
+ + + + +
+

Jillian & Adam

+
+
June 7, 2025
+
+
+
207 DAYS TO GO!
+
+
+ +
+ +
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 534c0d0..92c8296 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -18,25 +18,6 @@ -
<%= yield %>
@@ -44,7 +25,7 @@ var burgerMenu = document.getElementById('burger-menu'); var navLinks = document.getElementById('nav-links'); burgerMenu.addEventListener('click', function() { - navLinks.classList.toggle("max-sm:hidden"); + navLinks.classList.toggle("max-md:hidden"); }); diff --git a/guix.scm b/guix.scm new file mode 100644 index 0000000..cc13b27 --- /dev/null +++ b/guix.scm @@ -0,0 +1,33 @@ +(use-modules (guix packages) + (guix download) + (guix build-system gnu) + (gnu packages curl) + (gnu packages certs) + (gnu packages icu4c) + (gnu packages ruby) + (gnu packages serialization) + (gnu packages version-control) + (gnu packages tls) + (gnu packages web) + (gnu packages xml)) + +(package + (name "wedding-plan") + (version "0.0.1-git") + (source #f) + (build-system gnu-build-system) + (inputs + (list ruby-3.2 + git + libxml2 + icu4c + jq + curl + libyaml + nss-certs)) + (synopsis "") + (description "") + (home-page "") + (license #f)) + +