Files
AGS_IT_Solutions_Website/pages/ueber-uns.js
stefan080106 9c50160e5e 🔥 Remove image import
2022-05-20 22:18:35 +02:00

36 lines
1.1 KiB
JavaScript

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