49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
import Head from "next/head";
|
|
import Image from "next/image";
|
|
import StandardStyles from "../styles/Home.module.css";
|
|
import styles from "../styles/UeberUns.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>Über uns</h2>
|
|
<p>
|
|
Am 01. Mai 2022 wurde AGS IT Solutions als Nebengewerbe von mir Stefan
|
|
Arnold gegründet.
|
|
<br />
|
|
Ich war zu dem Zeitpunkt 16. Jahre alt und wollte meine Erfahrung in der
|
|
IT-Szene verbessern und unter Beweis stellen.
|
|
<br />
|
|
Die Firma bedient viele Bereiche, z.B. Softwareentwicklung, Webentwicklung
|
|
und vieles mehr.
|
|
</p>
|
|
</FadeIn>
|
|
</div>
|
|
<div style={{ width: "80%" }}>
|
|
{/* TODO: ProfileImage */}
|
|
<FadeIn delay={500} transitionDuration={1500}>
|
|
<h2>Das Team</h2>
|
|
<div className={styles.teamContainer}>
|
|
<div>
|
|
<img
|
|
src="https://cdn.discordapp.com/attachments/933369908341932052/983361091063128124/Profile_Image2.png"
|
|
alt="ProfileImage"
|
|
/>
|
|
<div>
|
|
<h2>Stefan Arnold</h2>
|
|
<h3>Inhaber</h3>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</FadeIn>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|