diff --git a/public/images/manschgerl_gelb.svg b/public/images/manschgerl_gelb.svg new file mode 100644 index 0000000..205ef09 --- /dev/null +++ b/public/images/manschgerl_gelb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/globals.css b/src/app/globals.css index 7f99328..60ae840 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1,3 +1,51 @@ -@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Stick+No+Bills:wght@700&display=swap'); -@import "tailwindcss"; \ No newline at end of file +@import "tailwindcss"; +@plugin "@tailwindcss/typography"; + +@theme { + --color-flyer-yellow: #DEE213; + --color-flyer-black: #171512; + --color-flyer-cream: #FAF7EC; + + --font-roboto: Roboto, sans-serif; + --font-stick: "Stick No Bills", sans-serif; +} + +html { + scroll-behavior: smooth; + scroll-padding-top: 84px; +} + +@keyframes fade-in-up { + from { + opacity: 0; + transform: translateY(28px); + } + to { + opacity: 1; + transform: translateY(0); + } +} + +.animate-fade-in-up { + animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; +} + +@keyframes photo-sway { + 0%, 100% { + transform: rotate(3deg); + } + 50% { + transform: rotate(-2deg); + } +} + +.animate-photo-sway { + animation: photo-sway 5s ease-in-out infinite; +} + +.bg-halftone { + background-image: radial-gradient(rgba(23, 21, 18, 0.12) 1.5px, transparent 1.5px); + background-size: 12px 12px; +} \ No newline at end of file diff --git a/src/app/impressum/page.tsx b/src/app/impressum/page.tsx index 8ffbd7a..bbd73c6 100644 --- a/src/app/impressum/page.tsx +++ b/src/app/impressum/page.tsx @@ -4,8 +4,8 @@ export default function ImpressumPage() { return ( <> {/*
*/} -
-

Impressum

+
+

Impressum

Angaben gemäß § 5 E-Commerce-Gesetz (ECG) und § 25 Mediengesetz (MedienG):

@@ -16,7 +16,7 @@ export default function ImpressumPage() {

Kommandant: HBI Ing. Bernhard Ehgartner
E-Mail: kdo.008@bfvhb.at
- Homepage: https://feuerwehr-friedberg.at + Homepage: https://feuerwehr-friedberg.at

Rechtsform:

diff --git a/src/components/CookieBanner.tsx b/src/components/CookieBanner.tsx index d993789..fefdbe2 100644 --- a/src/components/CookieBanner.tsx +++ b/src/components/CookieBanner.tsx @@ -22,9 +22,9 @@ export default function CookieBanner() { } return ( -
+

Beim Steinbruchfest gibt es dann frische Mehlspeisen. Hier leider nur technisch notwendige Cookies

- +
); } diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx index 552af07..1d14fae 100644 --- a/src/components/layout/Footer.tsx +++ b/src/components/layout/Footer.tsx @@ -1,10 +1,27 @@ +import { FaEnvelope, FaFireAlt, FaMapMarkerAlt } from "react-icons/fa"; +import Image from 'next/image'; + export default function Footer() { return ( -