Skip to content

Commit

Permalink
Updated header links.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecao committed Mar 27, 2021
1 parent b24b855 commit 86ed5d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
8 changes: 0 additions & 8 deletions components/layout/Layout.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,13 @@
import React from 'react';
import Head from 'next/head';
import { useRouter } from 'next/router';
import Header from 'components/layout/Header';
import Footer from 'components/layout/Footer';

export default function Layout({ title, children, header = true, footer = true }) {
const { basePath } = useRouter();

return (
<>
<Head>
<title>umami{title && ` - ${title}`}</title>
<link rel="icon" href={`${basePath}/favicon.ico`} />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap"
rel="stylesheet"
/>
</Head>
{header && <Header />}
<main className="container">{children}</main>
Expand Down
5 changes: 5 additions & 0 deletions pages/_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,17 @@ export default function App({ Component, pageProps }) {
return (
<Provider store={store}>
<Head>
<link rel="icon" href={`${basePath}/favicon.ico`} />
<link rel="apple-touch-icon" sizes="180x180" href={`${basePath}/apple-touch-icon.png`} />
<link rel="icon" type="image/png" sizes="32x32" href={`${basePath}/favicon-32x32.png`} />
<link rel="icon" type="image/png" sizes="16x16" href={`${basePath}/favicon-16x16.png`} />
<link rel="manifest" href={`${basePath}/site.webmanifest`} />
<link rel="mask-icon" href={`${basePath}/safari-pinned-tab.svg`} color="#5bbad5" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap"
rel="stylesheet"
/>
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand Down

0 comments on commit 86ed5d5

Please sign in to comment.