mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-01-13 21:11:01 +00:00
30 lines
638 B
TypeScript
30 lines
638 B
TypeScript
|
|
import { AppProps } from "next/app";
|
||
|
|
import Head from "next/head";
|
||
|
|
import { Footer } from "../components/Footer";
|
||
|
|
import { Header } from "../components/Header";
|
||
|
|
import { Nav } from "../components/Nav";
|
||
|
|
import "../styles/globals.css";
|
||
|
|
|
||
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<Head>
|
||
|
|
<title>Hörspiel2021</title>
|
||
|
|
<link rel="icon" href="/favicon.ico" />
|
||
|
|
</Head>
|
||
|
|
<header>
|
||
|
|
<Header />
|
||
|
|
</header>
|
||
|
|
<nav>
|
||
|
|
<Nav />
|
||
|
|
</nav>
|
||
|
|
<Component {...pageProps} />
|
||
|
|
<footer>
|
||
|
|
<Footer />
|
||
|
|
</footer>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default MyApp;
|