File tree 7 files changed +155
-1968
lines changed 7 files changed +155
-1968
lines changed Original file line number Diff line number Diff line change 24
24
"faunadb" : " 4.0.0" ,
25
25
"luxon" : " 1.25.0" ,
26
26
"markdown-to-jsx" : " 7.1.1" ,
27
- "next" : " 10.0.4 " ,
27
+ "next" : " 10.0.7 " ,
28
28
"next-auth" : " 3.2.0" ,
29
29
"phosphor-react" : " 1.1.2" ,
30
30
"react" : " 17.0.1" ,
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ export default function HomePageFeed({
224
224
const [ session ] = useSession ( )
225
225
return (
226
226
< div className = "min-h-screen bg-gray-100 flex flex-col" >
227
- < header className = "bg-white shadow-sm lg:static lg:overflow-y-visible " >
227
+ < header className = "bg-white shadow-sm sticky top-0 z-10 " >
228
228
< AppNavBar />
229
229
</ header >
230
230
< div className = "py-10 flex-1" >
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ export default function Logo({
11
11
} ) {
12
12
return (
13
13
< A href = "/" className = "flex items-center cursor-pointer" >
14
- < Image src = "/logo.svg " width = { size } height = { size } alt = "Coderplex Logo" />
15
- < span className = { classNames ( 'ml-2 text-xl font-semibold ' , className ) } >
16
- Coderplex
14
+ < Image src = "/logo.png " width = { size } height = { size } alt = "Coderplex Logo" />
15
+ < span className = { classNames ( 'ml-2 text-xl font-medium ' , className ) } >
16
+ Coderplex Community
17
17
</ span >
18
18
</ A >
19
19
)
Original file line number Diff line number Diff line change @@ -22,7 +22,10 @@ const NavBar = ({
22
22
} : NavBarProps ) => {
23
23
const [ isNavBarOpen , setIsNavBarOpen ] = useState ( false )
24
24
return (
25
- < nav className = { classNames ( 'bg-white shadow' , className ) } { ...rest } >
25
+ < nav
26
+ className = { classNames ( 'bg-white shadow sticky top-0 z-10' , className ) }
27
+ { ...rest }
28
+ >
26
29
< div className = "px-4 mx-auto max-w-7xl sm:px-6 lg:px-8" >
27
30
< div className = "flex justify-between h-16" >
28
31
< div className = "flex" >
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ class MyDocument extends Document {
55
55
> </ script >
56
56
< script src = "https://unpkg.com/phosphor-icons" defer > </ script >
57
57
</ Head >
58
- < body className = "overflow-auto bg-gray-50" >
58
+ < body className = "bg-gray-50" >
59
59
< Main />
60
60
< NextScript />
61
61
</ body >
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments