File tree 2 files changed +7
-7
lines changed 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ export default function Hero() {
7
7
< div className = "mx-auto max-w-7xl px-4 py-16" >
8
8
< div className = "text-center" >
9
9
< h1 className = "text-4xl tracking-tight font-extrabold text-gray-900 sm:text-5xl md:text-6xl" >
10
- < span className = "block text-indigo-600 xl:inline" > Coderplex </ span >
11
- < span className = "block xl:inline" > Community</ span >
10
+ < span className = "block text-indigo-600 xl:inline" >
11
+ Learn. Code. Collaborate.
12
+ </ span >
12
13
</ h1 >
13
14
< p className = "mt-3 max-w-md mx-auto text-base text-gray-500 sm:text-lg md:mt-5 md:text-xl md:max-w-3xl" >
14
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
15
- Reprehenderit nam voluptatibus placeat perspiciatis porro laborum
16
- cum explicabo dolore quae.
15
+ Our mission is to help each other to learn more, create awesome
16
+ things, and become better developers.
17
17
</ p >
18
18
< div className = "mt-5 max-w-md mx-auto sm:flex sm:justify-center md:mt-8" >
19
19
< div className = "rounded-md shadow" >
Original file line number Diff line number Diff line change @@ -224,13 +224,13 @@ export default function HomePageFeed({
224
224
}
225
225
showGoal : boolean
226
226
} ) {
227
- const [ session ] = useSession ( )
227
+ const [ session , loading ] = useSession ( )
228
228
return (
229
229
< div className = "min-h-screen bg-gray-100 flex flex-col" >
230
230
< header className = "bg-white shadow-sm sticky top-0 z-10" >
231
231
< AppNavBar />
232
232
</ header >
233
- { ! session && < Hero /> }
233
+ { ! loading && ! session && < Hero /> }
234
234
< div className = "py-10 flex-1" >
235
235
< div className = "max-w-3xl mx-auto sm:px-6 lg:max-w-7xl lg:px-8 lg:grid lg:grid-cols-12 lg:gap-8" >
236
236
< div className = "hidden lg:block lg:col-span-3 xl:col-span-2" >
You can’t perform that action at this time.
0 commit comments