style: Keyfarbe #051e23 + Pfandlogo einbauen

- Tailwind brand-Palette neu verankert: #051e23 = brand-900 (Keyfarbe),
  brand-50..950 als dunkles Teal-Spektrum (warm)
- btn-primary: bg-brand-900 hover:bg-brand-800 (statt indigo)
- input/badge: focus/text auf brand-700/900
- public/pfandlogo.jpg eingebaut als:
  - Favicon + Apple-Touch-Icon
  - Login (zentral, statt P-Box)
  - TopNav-Header (statt P-Box)
  - SuperAdmin-Header (statt P-Box)
- index.html theme-color #051e23
- manifest.json theme_color #051e23 + Logo als zusaetzliches Icon
This commit is contained in:
christian
2026-05-26 13:37:39 +00:00
parent 51aa85df6f
commit 25ede6f2a3
11 changed files with 37 additions and 5751 deletions

View File

@@ -1,8 +1,7 @@
# Dockerfile für statisches React-Frontend mit Nginx
FROM node:20 AS build
FROM node:20-alpine AS build
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY package.json ./
RUN npm install --no-audit --no-fund
COPY . .
RUN npm run build