Added logo.png to assets and updated angular.json to include assets folder. Modified home-component HTML and CSS to display the logo with a fade-in animation and improved layout. Updated index.html title to 'InfiniMotion'.
26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
<div class="relative w-screen h-screen overflow-hidden flex items-center justify-center">
|
|
<div class="absolute -top-140 -left-120 w-[800px] h-[800px] bg-indigo-500/50 rounded-full filter blur-[250px] pointer-events-none animate-fadeUp-delay"></div>
|
|
<div class="absolute -bottom-140 -right-120 w-[800px] h-[800px] bg-pink-600/40 rounded-full filter blur-[250px] pointer-events-none animate-fadeUp-delay"></div>
|
|
|
|
<div class="content">
|
|
<div class="flex items-center justify-center">
|
|
<div>
|
|
<img src="assets/logo.png" class="w-48 h-48 animate-fade-logo">
|
|
</div>
|
|
<div class="text-left flex flex-col justify-center">
|
|
<h1 class="text-6xl font-bold animate-fadeUp">InfiniMotion</h1>
|
|
<h2 class="text-4xl font-bold animate-fadeUp-delay bg-gradient-to-r from-indigo-500 to-pink-600 bg-clip-text text-transparent">
|
|
Absolut war gestern, Bewegung ist heute!
|
|
</h2>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="absolute bottom-5 left-5 text-gray-400 z-10">
|
|
Informationsinfrastrukturen Unit 2 - FHDW Hannover
|
|
<br>
|
|
© 2025 Marcel Anker, Lennart Heinrich, Piet Ostendorp, Kevin Szarafin
|
|
</div>
|
|
|
|
</div>
|