- Implemented the dark photo-based theme.

Moved all images to public/assets/images.
Added darkened photography across heroes, specials, menu cards, 
authentication, story, checkout, and footer.
Replaced placeholder branding with the supplied logo.
Preserved configurable menu item images.
Updated desktop and mobile styling for readable cream/gold text.
This commit is contained in:
Ty Clifford
2026-06-10 16:11:29 -04:00
parent 16235369cb
commit 34ca1be9b7
35 changed files with 554 additions and 134 deletions
+12
View File
@@ -0,0 +1,12 @@
RewriteEngine On
# When public/ is the DocumentRoot, allow its own .htaccess to handle the request.
RewriteRule ^public/ - [L]
# Never expose application internals when the repository root is public.
RewriteRule ^(?:app|config|storage|views)(?:/|$) - [F,END,NC]
# Serve public assets directly, then send every application URL to PHP.
RewriteRule ^assets/(.*)$ public/assets/$1 [END,NC]
RewriteRule ^favicon\.ico$ public/favicon.ico [END,NC]
RewriteRule ^ public/index.php [QSA,END]