2022-08-16 00:01:54 +02:00
|
|
|
import "../styles/globals.css";
|
|
|
|
import type { AppProps } from "next/app";
|
|
|
|
import Container from "../components/Container";
|
|
|
|
import Navigation from "../components/Navigation";
|
|
|
|
import { RecoilRoot } from "recoil";
|
2022-08-17 03:04:06 +02:00
|
|
|
import Head from "next/head";
|
2022-08-16 00:01:54 +02:00
|
|
|
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
|
|
|
return (
|
|
|
|
<RecoilRoot>
|
2022-08-17 03:04:06 +02:00
|
|
|
<Head>
|
|
|
|
<title key="title">pronouns.cc</title>
|
|
|
|
</Head>
|
2022-08-16 00:01:54 +02:00
|
|
|
<Navigation />
|
|
|
|
<Container>
|
|
|
|
<Component {...pageProps} />
|
|
|
|
</Container>
|
|
|
|
</RecoilRoot>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MyApp;
|