forked from btholt/next-course-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_app.js
47 lines (44 loc) · 1.19 KB
/
_app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import Head from "next/head";
import "@fortawesome/fontawesome-free/css/all.css";
import "highlight.js/styles/a11y-light.css";
import "../styles/variables.css";
import "../styles/footer.css";
import "../styles/courses.css";
import Layout from "../components/layout";
export default function App({ Component, pageProps }) {
return (
<Layout>
<Head>
<link
rel="apple-touch-icon"
sizes="180x180"
href={`${process.env.BASE_URL}/images/apple-touch-icon.png`}
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href={`${process.env.BASE_URL}/images/favicon-32x32.png`}
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href={`${process.env.BASE_URL}/images/favicon-16x16.png`}
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href={`${process.env.BASE_URL}/images/favicon-16x16.png`}
/>
<link
rel="icon"
type="image/x-icon"
href={`${process.env.BASE_URL}/images/favicon.ico`}
/>
</Head>
<Component {...pageProps} />
</Layout>
);
}