Redesign About, Leistungen, and KontaktForm components: implement motion effects, improve layout and responsiveness, enhance styling, and add new content placeholders.

This commit is contained in:
2025-06-26 10:19:01 +09:00
parent c5203bee7a
commit 56c0edf857
5 changed files with 197 additions and 43 deletions

View File

@@ -4,12 +4,12 @@ import About from "@/components/About";
import KontaktForm from "@/components/KontaktForm";
export default function HomePage() {
return (
<main>
<Hero />
<Leistungen />
<About />
<KontaktForm />
</main>
);
return (
<main>
<Hero/>
<About/>
<Leistungen/>
<KontaktForm/>
</main>
);
}