๐Ÿ“ฆ colinhacks / edgedb-nextjs-blog

๐Ÿ“„ Header.tsx ยท 56 lines
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
56import React from 'react'
import Link from 'next/link'

const Header: React.FC = () => {
  return (
    <nav>
      <div className="left">
        <Link href="/">
          <a>Blog</a>
        </Link>
        <Link href="/drafts">
          <a>Drafts</a>
        </Link>
      </div>
      <div className="right">
        <Link href="/create">
          <a>+ New draft</a>
        </Link>
      </div>
      <style jsx>{`
        nav {
          display: flex;
          padding: 2rem;
          align-items: center;
        }

        .bold {
          font-weight: bold;
        }

        a {
          text-decoration: none;
          color: #000;
          display: inline-block;
        }

        a + a {
          margin-left: 1rem;
        }

        .right {
          margin-left: auto;
        }

        .right a {
          border: 2px solid black;
          padding: 0.5rem 1rem;
          border-radius: 3px;
        }
      `}</style>
    </nav>
  )
}

export default Header