navbar meg fooldal navigációk illetve companies -> contacts

This commit is contained in:
2025-10-24 19:55:37 +02:00
parent 8960bd9dce
commit 0ed75beb3f
7 changed files with 81 additions and 56 deletions
@@ -23,6 +23,10 @@ export default function LandingPageMain() {
navigate("/home");
};
const handleNavigateToContacts = () => {
navigate("/contacts");
};
return (
<div className="w-full min-h-screen flex flex-col relative overflow-x-hidden">
<div className="fixed inset-0 -z-10 pointer-events-none">
@@ -32,7 +36,7 @@ export default function LandingPageMain() {
<Navbar />
</div>
<main className="flex-1 flex flex-col items-center justify-start py-15 min-h-0 mt-[64px]">
<LandingPage onNavigateToPlay={handleNavigateToPlay} onNavigateToAuth={handleNavigateToAuth} onNavigateToGame={handleNavigateToGame} />
<LandingPage onNavigateToContacts={handleNavigateToContacts} onNavigateToPlay={handleNavigateToPlay} onNavigateToAuth={handleNavigateToAuth} onNavigateToGame={handleNavigateToGame} />
</main>
<Footer />
</div>