File tree Expand file tree Collapse file tree 3 files changed +53
-0
lines changed Expand file tree Collapse file tree 3 files changed +53
-0
lines changed Original file line number Diff line number Diff line change 1
1
import React from "react"
2
2
import { CheckCircledIcon } from "@radix-ui/react-icons"
3
3
import ButtonConf from "../Button"
4
+ import { ReactComponent as BusIcon } from "../../../../static/img/conf/bus.svg"
4
5
5
6
interface Pricing {
6
7
title : string
@@ -83,6 +84,33 @@ const PricingConf = () => {
83
84
Buy a Ticket!
84
85
</ ButtonConf >
85
86
</ div >
87
+
88
+ < div className = "flex-1" >
89
+ < div className = "h-full rounded-lg overflow-hidden relative [&_a]:text-[--rhodamine] [&_a]:font-medium [&_p]:text-white [&_p]:text-lg [&_p]:mb-6 [&>div>a]:block [&>div>a]:mt-6 [&>div>a]:mb-3" >
90
+ < BusIcon className = "fill-[--rhodamine] h-16 w-auto" />
91
+ < h1 className = "my-3 sm:text-2xl text-xl font-medium text-white" >
92
+ Complimentary Shuttle Service
93
+ </ h1 >
94
+ < div >
95
+ < a
96
+ href = "https://www.hyatt.com/en-US/hotel/california/hyatt-regency-san-francisco-airport/sfobu?src=adm_sem_crp_chico_crp_ppc_NAM-UnitedStates-CA-Burlingame-HR-SFOBU_google_Evergreen2022_e_hyatt%20regency%20sfo"
97
+ target = "_blank"
98
+ rel = "noreferrer"
99
+ >
100
+ Hyatt Regency SFO
101
+ </ a >
102
+ < p >
103
+ The Hyatt Regency SFO offers a < a > 24-hour</ a > complimentary
104
+ San Francisco International Airport (SFO) shuttle which runs
105
+ every < a > 15 minutes</ a > from < a > 4:00AM until 1:00AM</ a > and
106
+ < a > every 30 minutes</ a > from < a > 1:00AM until 4:00AM</ a > . At
107
+ SFO, go to the area marked "Hotel Shuttle." The bus is marked
108
+ "Hyatt Regency and Marriott.”
109
+ </ p >
110
+ </ div >
111
+ </ div >
112
+ </ div >
113
+
86
114
< div className = "w-full" >
87
115
< div className = "mx-auto flex flex-col items-center text-center" >
88
116
< h3 className = "sm:text-2xl text-xl font-medium text-white mt-6 mb-2" >
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import React from "react"
2
2
import { ReactComponent as TrainIcon } from "../../../../static/img/conf/train.svg"
3
3
import { ReactComponent as AroundIcon } from "../../../../static/img/conf/around.svg"
4
4
import { ReactComponent as ParkingIcon } from "../../../../static/img/conf/parking.svg"
5
+ import { ReactComponent as BusIcon } from "../../../../static/img/conf/bus.svg"
5
6
6
7
const VenueConf = ( ) => {
7
8
return (
@@ -208,6 +209,29 @@ const VenueConf = () => {
208
209
</ div >
209
210
) ,
210
211
} ,
212
+ {
213
+ title : "Complimentary Shuttle Service" ,
214
+ icon : BusIcon ,
215
+ content : (
216
+ < div >
217
+ < a
218
+ href = "https://www.hyatt.com/en-US/hotel/california/hyatt-regency-san-francisco-airport/sfobu?src=adm_sem_crp_chico_crp_ppc_NAM-UnitedStates-CA-Burlingame-HR-SFOBU_google_Evergreen2022_e_hyatt%20regency%20sfo"
219
+ target = "_blank"
220
+ rel = "noreferrer"
221
+ >
222
+ Hyatt Regency SFO
223
+ </ a >
224
+ < p >
225
+ The Hyatt Regency SFO offers a < a > 24-hour</ a > complimentary
226
+ San Francisco International Airport (SFO) shuttle which runs
227
+ every < a > 15 minutes</ a > from < a > 4:00AM until 1:00AM</ a > and
228
+ < a > every 30 minutes</ a > from < a > 1:00AM until 4:00AM</ a > . At
229
+ SFO, go to the area marked "Hotel Shuttle." The bus is marked
230
+ "Hyatt Regency and Marriott.”
231
+ </ p >
232
+ </ div >
233
+ ) ,
234
+ } ,
211
235
] . map ( o => (
212
236
< div key = { o . title } className = "flex-1" >
213
237
< div className = "h-full rounded-lg overflow-hidden relative [&_a]:text-[--rhodamine] [&_a]:font-medium [&_p]:text-white [&_p]:text-lg [&_p]:mb-6 [&>div>a]:block [&>div>a]:mt-6 [&>div>a]:mb-3" >
You can’t perform that action at this time.
0 commit comments