This commit is contained in:
2024-11-23 19:32:19 -05:00
parent 7bbeb8ebc4
commit 03d47b5b5a
6 changed files with 9 additions and 3 deletions

BIN
app/assets/images/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -1,4 +1,4 @@
class ApplicationController < ActionController::Base class ApplicationController < ActionController::Base
# Only allow modern browsers supporting webp images, web push, badges, import maps, CSS nesting, and CSS :has. # Only allow modern browsers supporting webp images, web push, badges, import maps, CSS nesting, and CSS :has.
allow_browser versions: :modern # allow_browser versions: :modern
end end

View File

@@ -46,7 +46,7 @@
<div class="w-full block flex-grow max-lg:hidden lg:flex lg:w-auto lg:justify-center lg:pb-4 lg:pt-4 lg:border-t lg:border-b"> <div class="w-full block flex-grow max-lg:hidden lg:flex lg:w-auto lg:justify-center lg:pb-4 lg:pt-4 lg:border-t lg:border-b">
<div id="nav-links-lg" class="text-xl flex flex-col lg:flex-row"> <div id="nav-links-lg" class="text-xl flex flex-col lg:flex-row">
<a href="#our-story" class="block mt-4 lg:inline-block lg:mt-0 hover:text-slate-500 px-12">Our Story</a> <a href="#our-story" class="block mt-4 lg:inline-block lg:mt-0 hover:text-slate-500 px-12">How We Met</a>
<a href="#ceremony" class="block mt-4 lg:inline-block lg:mt-0 hover:text-slate-500 px-12">Ceremony & Reception</a> <a href="#ceremony" class="block mt-4 lg:inline-block lg:mt-0 hover:text-slate-500 px-12">Ceremony & Reception</a>
<!-- <a href="#accommodations" class="block mt-4 lg:inline-block lg:mt-0 hover:text-slate-500 mr-24">Accommodations</a> --> <!-- <a href="#accommodations" class="block mt-4 lg:inline-block lg:mt-0 hover:text-slate-500 mr-24">Accommodations</a> -->
<!-- <a href="#registry" class="block mt-4 lg:inline-block lg:mt-0 hover:text-white mr-24">Registry</a> --> <!-- <a href="#registry" class="block mt-4 lg:inline-block lg:mt-0 hover:text-white mr-24">Registry</a> -->

View File

@@ -9,9 +9,15 @@
<%= yield :head %> <%= yield :head %>
<<<<<<< Updated upstream
<link rel="manifest" nhref="/manifest.json"> <link rel="manifest" nhref="/manifest.json">
<link rel="icon" href="<%= image_path '/icon.png' %>" type="image/png"> <link rel="icon" href="<%= image_path '/icon.png' %>" type="image/png">
<link rel="apple-touch-icon" href="<%= image_path '/icon.png' %>"> <link rel="apple-touch-icon" href="<%= image_path '/icon.png' %>">
=======
<link rel="manifest" href="/manifest.json">
<link rel="icon" href="<%= image_path 'icon.png' %>" type="image/png">
<link rel="apple-touch-icon" href="<%= image_path 'icon.png' %>">
>>>>>>> Stashed changes
<%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %> <%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %>

View File

@@ -97,7 +97,7 @@ Rails.application.configure do
# Enable DNS rebinding protection and other `Host` header attacks. # Enable DNS rebinding protection and other `Host` header attacks.
config.hosts = [ config.hosts = [
"wedding.fixergrid.net", # Allow requests from example.com "wedding.fixergrid.net"
] ]
# Skip DNS rebinding protection for the default health check endpoint. # Skip DNS rebinding protection for the default health check endpoint.
# config.host_authorization = { exclude: ->(request) { request.path == "/up" } } # config.host_authorization = { exclude: ->(request) { request.path == "/up" } }