Files
AGS_IT_Solutions_Website/pages/ueber-uns.js
stefan080106 c322fb68b0 📝 Fix link
2022-05-19 18:11:12 +02:00

30 lines
986 B
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 ProfileImage from "../assets/img/Profile_Image.png";
export default function Home() {
return (
<main className={StandardStyles.main}>
<Head>
<title>AGS IT Solutions | Über uns</title>
</Head>
<div style={{ width: "80%" }}>
<h2>Die Firma</h2>
<p>AGS IT Solutions wurde am 01.05.2022 mir, Stefan Arnold in Aurich gegründet.</p>
</div>
<div style={{ width: "80%" }}>
{/* TODO: ProfileImage */}
<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>
</div>
</main>
);
}