umami/components/layout/Layout.js

27 lines
772 B
JavaScript
Raw Normal View History

2020-07-17 10:03:38 +02:00
import React from 'react';
import Head from 'next/head';
2021-03-05 01:20:53 +01:00
import { useRouter } from 'next/router';
2020-08-07 11:27:12 +02:00
import Header from 'components/layout/Header';
import Footer from 'components/layout/Footer';
2020-07-17 10:03:38 +02:00
2020-08-18 02:23:46 +02:00
export default function Layout({ title, children, header = true, footer = true }) {
2021-03-05 01:20:53 +01:00
const { basePath } = useRouter();
2020-07-17 10:03:38 +02:00
return (
<>
<Head>
<title>umami{title && ` - ${title}`}</title>
2021-03-05 01:20:53 +01:00
<link rel="icon" href={`${basePath}/favicon.ico`} />
2020-07-17 10:03:38 +02:00
<link
2020-07-30 05:09:41 +02:00
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap"
2020-07-17 10:03:38 +02:00
rel="stylesheet"
/>
</Head>
2020-08-07 07:03:02 +02:00
{header && <Header />}
2020-08-18 02:23:46 +02:00
<main className="container">{children}</main>
2020-08-07 07:03:02 +02:00
{footer && <Footer />}
2020-09-20 10:33:39 +02:00
<div id="__modals" />
2020-07-17 10:03:38 +02:00
</>
);
}