-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.js
59 lines (57 loc) · 1.63 KB
/
layout.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
48
49
50
51
52
53
54
55
56
57
58
59
import Head from 'next/head'
import Image from 'next/image'
import styles from './layout.module.css'
import utilStyles from '../styles/utils.module.css'
import Link from 'next/link'
import MainAppBar from './mainAppBar'
const name = '31 Days'
export const siteTitle = '31 Days'
export default function Layout({ children, home = false}) {
return (
<>
<MainAppBar />
<div className={styles.container}>
<Head>
<link rel="icon" href="/images/kurodake.jpg" />
<meta name="og:title" content={siteTitle} />
</Head>
<header className={styles.header}>
{home ? (
<>
<Image
priority
src="/images/kurodake.jpg"
className={utilStyles.borderCircle}
height={144}
width={144}
alt={name}
/>
<h1 className={utilStyles.heading2Xl}>{name}</h1>
</>
) : (
<>
<Link href="/">
<a>
<Image
priority
src="/images/kurodake.jpg"
className={utilStyles.borderCircle}
height={108}
width={108}
alt={name}
/>
</a>
</Link>
<h2 className={utilStyles.headingLg}>
<Link href="/">
<a className={utilStyles.colorInherit}>{name}</a>
</Link>
</h2>
</>
)}
</header>
<main>{children}</main>
</div>
</>
)
}