File tree 5 files changed +21
-15
lines changed 5 files changed +21
-15
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ div.index {
45
45
}
46
46
47
47
img {
48
- height : 150 px ;
48
+ height : 80 px ;
49
49
}
50
50
51
51
.button {
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ interface Props {
8
8
}
9
9
10
10
const SectionConf = ( { id, title, children } : Props ) : JSX . Element => (
11
- < div key = { id } id = { id } >
11
+ // Padding down so hash-links to this id display below the header menu
12
+ < div key = { id } id = { id } className = "pt-16 -mt-16" >
12
13
< h2 >
13
14
< a href = { `#${ id } ` } className = "no-underline" > { title } </ a >
14
15
</ h2 >
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ const VenueConf = () => {
31
31
< div className = "sm:w-full grid grid-rows-1 md:grid-cols-2 gap-20" >
32
32
< div >
33
33
< h3 className = "sm:text-2xl text-xl font-medium text-white mt-6 mb-4" >
34
- Venue Information
34
+ Venue & Lodging
35
35
</ h3 >
36
36
< p >
37
37
< a
@@ -59,23 +59,29 @@ const VenueConf = () => {
59
59
room block is full)
60
60
</ i >
61
61
< br />
62
- Please note, rooms will most likely sell out in advance of the < a href = "https://www.hyatt.com/en-US/group-booking/SFOBU/G-LIFO" target = "_blank" > room block</ a > close dates. We encourage you to book
63
- early to secure a room at the conference rate.
62
+ Please note, rooms will most likely sell out in advance of the{ " " }
63
+ < a
64
+ href = "https://www.hyatt.com/en-US/group-booking/SFOBU/G-LIFO"
65
+ target = "_blank"
66
+ >
67
+ room block
68
+ </ a > { " " }
69
+ close dates. We encourage you to book early to secure a room at
70
+ the conference rate.
64
71
</ div >
65
- < h3 className = "sm:text-2xl text-xl font-medium text-white mt-6 mb-4" > Alternate lodging options</ h3 >
72
+ </ div >
73
+
74
+ < div >
75
+ < h3 className = "sm:text-2xl text-xl font-medium text-white mt-6 mb-4" >
76
+ Alternate lodging options
77
+ </ h3 >
66
78
< a
67
79
href = "https://www.ihg.com/holidayinnexpress/hotels/us/en/burlingame/urlbh/hoteldetail"
68
80
target = "_blank"
69
81
rel = "noreferrer"
70
82
>
71
83
Holiday Inn Express San Francisco Airport South, and IHG Hotel
72
84
</ a >
73
- </ div >
74
-
75
- < div >
76
- < h3 className = "sm:text-2xl text-xl font-medium text-white mt-6 mb-4" >
77
- Additional Information
78
- </ h3 >
79
85
< p className = "leading-relaxed mb-3 text-white text-base" >
80
86
< span className = "font-bold" > Important:</ span > The Linux Foundation
81
87
will never reach out to attendees by phone to make hotel
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default () => {
18
18
< HeaderConf />
19
19
< div className = "text-gray-600 bg-color-[#562556] bg-[url(http://github.com/'/img/conf/graphql-conf-bg.png')] bg-cover bg-blend-multiply bg-opacity-20 bg-black" >
20
20
< div className = "container flex py-16 md:py-36 items-center justify-center flex-col" >
21
- < div className = "flex flex-col justify-center items-center w-full gap-2 md :gap-32 md :flex-row" >
21
+ < div className = "flex flex-col justify-center items-center w-full gap-2 lg :gap-32 lg :flex-row" >
22
22
< div >
23
23
< img
24
24
src = "/img/conf/graphql-conf-logo.svg"
Original file line number Diff line number Diff line change @@ -11,15 +11,14 @@ import WithoutVersions from "../Containers/Sections/WithoutVersion"
11
11
import PowerFulTools from "../Containers/Sections/PowerFulTools"
12
12
import WhosUsing from "../Containers/Sections/WhosUsing"
13
13
import Seo from "../components/Seo"
14
- import { ReactComponent as GraphQLConfLogo } from "../../static/img/conf/graphql-conf-logo.svg"
15
14
16
15
export default ( { pageContext } : PageProps < { } , { sourcePath : string } > ) => {
17
16
return (
18
17
< Layout className = "index" pageContext = { pageContext } >
19
18
< Hero />
20
19
< section className = "conf-banner" >
21
20
< a href = "/conf/" >
22
- < GraphQLConfLogo />
21
+ < img src = "/img/conf/graphql-conf-logo.svg" />
23
22
< div >
24
23
< span >
25
24
The offical GraphQL conference, by the GraphQL Foundation
You can’t perform that action at this time.
0 commit comments