Skip to content

Commit 38b274e

Browse files
committed
Draft: Complimentary Shuttle Service
Signed-off-by: TuvalSimha <tuval.simha@gmail.com>
1 parent 16864ba commit 38b274e

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

src/components/Conf/Pricing/index.tsx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React from "react"
22
import { CheckCircledIcon } from "@radix-ui/react-icons"
33
import ButtonConf from "../Button"
4+
import { ReactComponent as BusIcon } from "../../../../static/img/conf/bus.svg"
45

56
interface Pricing {
67
title: string
@@ -83,6 +84,33 @@ const PricingConf = () => {
8384
Buy a Ticket!
8485
</ButtonConf>
8586
</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+
86114
<div className="w-full">
87115
<div className="mx-auto flex flex-col items-center text-center">
88116
<h3 className="sm:text-2xl text-xl font-medium text-white mt-6 mb-2">

src/components/Conf/Venue/index.tsx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React from "react"
22
import { ReactComponent as TrainIcon } from "../../../../static/img/conf/train.svg"
33
import { ReactComponent as AroundIcon } from "../../../../static/img/conf/around.svg"
44
import { ReactComponent as ParkingIcon } from "../../../../static/img/conf/parking.svg"
5+
import { ReactComponent as BusIcon } from "../../../../static/img/conf/bus.svg"
56

67
const VenueConf = () => {
78
return (
@@ -208,6 +209,29 @@ const VenueConf = () => {
208209
</div>
209210
),
210211
},
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+
},
211235
].map(o => (
212236
<div key={o.title} className="flex-1">
213237
<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">

static/img/conf/bus.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)