54 lines
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
import Head from "next/head";
|
|
import StandardStyles from "../styles/Home.module.css";
|
|
import styles from "../styles/UeberUns.module.css";
|
|
import FadeIn from "react-fade-in";
|
|
import TeamCard from "../components/ueber-uns/teamCard";
|
|
|
|
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%" }}>
|
|
<FadeIn delay={500} transitionDuration={1500}>
|
|
<h2>Das Team</h2>
|
|
<div className={styles.teamContainer}>
|
|
{[
|
|
{
|
|
name: "Stefan Arnold",
|
|
stellung: "Inhaber",
|
|
imgUrl: "https://cdn.discordapp.com/attachments/933369908341932052/983361091063128124/Profile_Image2.png",
|
|
},
|
|
].map((member) => {
|
|
return (
|
|
<TeamCard
|
|
key={member.name}
|
|
name={member.name}
|
|
stellung={member.stellung}
|
|
imgUrl={member.imgUrl}
|
|
/>
|
|
);
|
|
})}
|
|
</div>
|
|
</FadeIn>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|