📝 Fix link

This commit is contained in:
stefan080106
2022-05-19 18:11:12 +02:00
parent 56083b34f7
commit c322fb68b0

29
pages/ueber-uns.js Normal file
View File

@@ -0,0 +1,29 @@
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>
);
}