added a combined logo+text for easier styling

This commit is contained in:
2025-07-06 16:24:41 +02:00
parent 74707829fe
commit 84a72d5354
4 changed files with 25 additions and 9 deletions

View File

@@ -15,8 +15,7 @@ import {
FaVrCardboard,
} from 'react-icons/fa';
import {HiSparkles} from 'react-icons/hi';
import logo from "../assets/logo.svg";
import text from "../assets/text.svg";
import logotext from "../assets/logotext.svg";
interface HomeProps {
isLoggedIn: boolean;
@@ -49,8 +48,7 @@ export default function Home({isLoggedIn, handleLogin}: HomeProps) {
<div className="text-center mb-16 relative z-10">
<div className="animate-pulse flex flex-col items-center mb-12">
<div className="flex items-center justify-around">
<img src={logo} alt="REMind Logo" className="h-32 w-32"/>
<img src={text} alt="REMind Text" className="h-48"/>
<img src={logotext} alt="REMind Logo and Text" className="h-48 mb-4"/>
</div>
<p className="text-xl dreamy-text">Träume analysieren, Gesellschaft verstehen</p>
</div>