diff --git a/lawfirm-demos/demo-2/components/Hero.tsx b/lawfirm-demos/demo-2/components/Hero.tsx index 8e04b2c..206e736 100644 --- a/lawfirm-demos/demo-2/components/Hero.tsx +++ b/lawfirm-demos/demo-2/components/Hero.tsx @@ -1,10 +1,43 @@ +"use client"; + +import {motion} from "framer-motion"; +import Image from "next/image"; + export default function Hero() { return ( -
-

Rechtsanwalt Max Mustermann

-

- Ihr Partner für Zivilrecht, Vertragsrecht und mehr -

+
+ {/* Hintergrundbild */} + Hintergrundbild + + {/* Dunkles Overlay für bessere Lesbarkeit */} +
+ + {/* Text-Content */} +
+ + Rechtsanwalt Max Mustermann + + + + Ihr zuverlässiger Partner für Zivilrecht, Vertragsrecht und mehr + +
); } diff --git a/lawfirm-demos/demo-2/public/images/hero.jpeg b/lawfirm-demos/demo-2/public/images/hero.jpeg new file mode 100644 index 0000000..61f6c00 Binary files /dev/null and b/lawfirm-demos/demo-2/public/images/hero.jpeg differ diff --git a/lawfirm-demos/demo-2/public/images/team/kuenstler.jpg b/lawfirm-demos/demo-2/public/images/team/kuenstler.jpg new file mode 100644 index 0000000..4a62bed Binary files /dev/null and b/lawfirm-demos/demo-2/public/images/team/kuenstler.jpg differ diff --git a/lawfirm-demos/demo-2/public/images/team/mustermann.jpg b/lawfirm-demos/demo-2/public/images/team/mustermann.jpg new file mode 100644 index 0000000..4a62bed Binary files /dev/null and b/lawfirm-demos/demo-2/public/images/team/mustermann.jpg differ