💄 Add animation

This commit is contained in:
stefan080106
2022-05-19 18:23:59 +02:00
parent 8ebdb7063f
commit 240bdc29d0

View File

@@ -3,6 +3,7 @@ import Image from "next/image";
import StandardStyles from "../styles/Home.module.css"; import StandardStyles from "../styles/Home.module.css";
import styles from "../styles/LandingPage.module.css"; import styles from "../styles/LandingPage.module.css";
import ProfileImage from "../assets/img/Profile_Image.png"; import ProfileImage from "../assets/img/Profile_Image.png";
import FadeIn from "react-fade-in";
export default function Home() { export default function Home() {
return ( return (
@@ -11,18 +12,24 @@ export default function Home() {
<title>AGS IT Solutions | Über uns</title> <title>AGS IT Solutions | Über uns</title>
</Head> </Head>
<div style={{ width: "80%" }}> <div style={{ width: "80%" }}>
<h2>Die Firma</h2> <FadeIn transitionDuration={1500}>
<p>AGS IT Solutions wurde am 01.05.2022 mir, Stefan Arnold in Aurich gegründet.</p> <h2>Die Firma</h2>
<p>
AGS IT Solutions wurde am 01.05.2022 mir, Stefan Arnold in Aurich gegründet.
</p>
</FadeIn>
</div> </div>
<div style={{ width: "80%" }}> <div style={{ width: "80%" }}>
{/* TODO: ProfileImage */} {/* TODO: ProfileImage */}
<h2>Über mich</h2> <FadeIn delay={500} transitionDuration={1500}>
<p> <h2>Über mich</h2>
Moin, ich bin Stefan! Ich bin 16 Jahre und gebürtig auch aus Aurich. Ich habe <p>
mit 9 Jahren mit meinem ersten Computer mein Interesse an der IT aufzubauen. Moin, ich bin Stefan! Ich bin 16 Jahre und gebürtig auch aus Aurich. Ich
Seit dem habe ich mich immer mehr informiert und bin immer tiefer in die IT und habe mit 9 Jahren mit meinem ersten Computer mein Interesse an der IT
Schwerpunktmäßig in die Programmierung eingestiegen. aufzubauen. Seit dem habe ich mich immer mehr informiert und bin immer
</p> tiefer in die IT und Schwerpunktmäßig in die Programmierung eingestiegen.
</p>
</FadeIn>
</div> </div>
</main> </main>
); );