1
+ import React from "react" ;
2
+ import Link from "@/components/Link"
3
+ import Image from "next/image" ;
4
+
5
+ // TODO: add sign in, signup, and signout links
6
+
7
+ interface Props {
8
+ isLoggedIn ?: boolean ;
9
+ }
10
+
11
+ const Nav : React . FC < Props > = ( { isLoggedIn} ) => {
12
+ return (
13
+ < nav className = "bg-gray-800" >
14
+ < div className = "mx-auto max-w-7xl px-4 sm:px-6 lg:px-8" >
15
+ < div className = "flex h-16 items-center justify-between" >
16
+ { /* Logo and Links Section */ }
17
+ < div className = "flex items-center" >
18
+ < div className = "flex-shrink-0" >
19
+ < Image
20
+ className = "h-8 w-8"
21
+ src = "https://tailwindui.com/img/logos/mark.svg?color=indigo& shade = 500 "
22
+ width = { 32 }
23
+ height = { 32 }
24
+ alt = "Domain Fusion" />
25
+ </ div >
26
+ { ! ! isLoggedIn && (
27
+ < div className = "hidden md:block" >
28
+ < div className = "ml-10 flex items-baseline space-x-4" >
29
+ < Link
30
+ href = "#"
31
+ selected = { true }
32
+ >
33
+ Inbox
34
+ </ Link >
35
+ < Link
36
+ href = "#"
37
+ selected = { false }
38
+ disabled = { true }
39
+ >
40
+ Calendar
41
+ </ Link >
42
+ </ div >
43
+ </ div >
44
+ ) }
45
+ </ div >
46
+
47
+ { /*<div className="hidden md:block">*/ }
48
+ { /* <div className="ml-4 flex items-center md:ml-6">*/ }
49
+ { /* <button type="button"*/ }
50
+ { /* className="relative rounded-full bg-gray-800 p-1 text-gray-400 hover:text-white focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-gray-800">*/ }
51
+ { /* <span className="absolute -inset-1.5"></span>*/ }
52
+ { /* <span className="sr-only">View notifications</span>*/ }
53
+ { /* <svg className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5"*/ }
54
+ { /* stroke="currentColor" aria-hidden="true">*/ }
55
+ { /* <path stroke-linecap="round" stroke-linejoin="round"*/ }
56
+ { /* d="M14.857 17.082a23.848 23.848 0 005.454-1.31A8.967 8.967 0 0118 9.75v-.7V9A6 6 0 006 9v.75a8.967 8.967 0 01-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 01-5.714 0m5.714 0a3 3 0 11-5.714 0"/>*/ }
57
+ { /* </svg>*/ }
58
+ { /* </button>*/ }
59
+
60
+ { /* <div className="relative ml-3">*/ }
61
+ { /* <div>*/ }
62
+ { /* <button type="button"*/ }
63
+ { /* className="relative flex max-w-xs items-center rounded-full bg-gray-800 text-sm focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-gray-800"*/ }
64
+ { /* id="user-menu-button" aria-expanded="false" aria-haspopup="true">*/ }
65
+ { /* <span className="absolute -inset-1.5"></span>*/ }
66
+ { /* <span className="sr-only">Open user menu</span>*/ }
67
+ { /* <img className="h-8 w-8 rounded-full"*/ }
68
+ { /* src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"*/ }
69
+ { /* alt=""/>*/ }
70
+ { /* </button>*/ }
71
+ { /* </div>*/ }
72
+
73
+ { /* /!* Drop down menu *!/*/ }
74
+ { /* <div*/ }
75
+ { /* className="absolute right-0 z-10 mt-2 w-48 origin-top-right rounded-md bg-white py-1 shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none"*/ }
76
+ { /* role="menu" aria-orientation="vertical" aria-labelledby="user-menu-button"*/ }
77
+ { /* tabIndex={-1}>*/ }
78
+ { /* <a href="#" className="block px-4 py-2 text-sm text-gray-700" role="menuitem"*/ }
79
+ { /* tabIndex={-1} id="user-menu-item-0">Your Profile</a>*/ }
80
+ { /* <a href="#" className="block px-4 py-2 text-sm text-gray-700" role="menuitem"*/ }
81
+ { /* tabIndex={-1} id="user-menu-item-1">Settings</a>*/ }
82
+ { /* <a href="#" className="block px-4 py-2 text-sm text-gray-700" role="menuitem"*/ }
83
+ { /* tabIndex={-1} id="user-menu-item-2">Sign out</a>*/ }
84
+ { /* </div>*/ }
85
+ { /* </div>*/ }
86
+ { /* </div>*/ }
87
+ { /*</div>*/ }
88
+
89
+ </ div >
90
+ </ div >
91
+ </ nav >
92
+ )
93
+ }
94
+
95
+ export default Nav ;
0 commit comments