mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-02-08 10:47:00 +00:00
init
This commit is contained in:
parent
42ec5539dc
commit
b536ee4124
23 changed files with 8696 additions and 223 deletions
29
pages/_app.tsx
Normal file
29
pages/_app.tsx
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue