Skip to content

Commit

Permalink
added imprint
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippSeidel committed Oct 11, 2023
1 parent 258043b commit ac7221c
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export const Menu = () => {
<MenuItem href={'/crew'}>Crew</MenuItem>
<MenuItem href={'/schedule'}>Wochenplan</MenuItem>
<MenuItem href={'/log'}>Logbuch</MenuItem>
<MenuItem href={'/imprint'}>Impressum</MenuItem>
</div>
<div data-depth="0.6" className={styles.wave}>
<div />
Expand Down
41 changes: 41 additions & 0 deletions pages/imprint.tsx
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;
7 changes: 7 additions & 0 deletions styles/Home.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,13 @@
font-size: 1.5rem;
}

.centeredDescription {
margin: 4rem 0;
line-height: 1.8;
font-size: 1.5rem;
text-align: center;
}

.code {
background: #fafafa;
border-radius: 5px;
Expand Down

0 comments on commit ac7221c

Please sign in to comment.