-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
258043b
commit ac7221c
Showing
3 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import type { NextPage } from 'next' | ||
import Head from 'next/head' | ||
import NextLink from 'next/link' | ||
import styles from '../styles/Home.module.css' | ||
import stylesCrew from '../styles/Crew.module.css' | ||
import { ImageFrame } from '../components/ImageFrame' | ||
import Layout from "../components/Layout"; | ||
import Image from "next/image"; | ||
import crewImage from '../public/pirates.png'; | ||
|
||
const Home: NextPage = () => { | ||
return ( | ||
<Layout> | ||
<Head> | ||
<title>Impressum</title> | ||
<meta name="description" content="Pirates O-Phasengruppe - Impressum" /> | ||
</Head> | ||
|
||
<section className={styles.content}> | ||
<h1 className={styles.title}> | ||
Impressum | ||
</h1> | ||
|
||
<p className={styles.centeredDescription}> | ||
Pirates O-Phasengruppe <br></br> | ||
c/o AStA am KIT <br></br> | ||
Adenauerring 7 <br></br> | ||
76133 Karlsruhe | ||
</p> | ||
|
||
<p className={styles.description}> | ||
Wir freuen uns auch dieses Jahr wieder von unseren | ||
Sponsoren mit Nahrung und finanziellen Mitteln versorgt worden zu sein. | ||
Vielen Dank an <NextLink href="https://www.andrena.de/">Andrena Objects</NextLink> und die <NextLink href="https://www.badische-backstub.de/">Badische Backstub</NextLink>. | ||
</p> | ||
</section> | ||
</Layout> | ||
); | ||
}; | ||
|
||
export default Home; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters