Skip to content

Commit 16d3fd4

Browse files
authored
adding rsvp button & deadline at bottom (#8)
* adding rsvp button & deadline at bottom * remove junk import
1 parent 4ecff87 commit 16d3fd4

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

src/pages/index.tsx

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -159,15 +159,26 @@ function Main() {
159159
</div>
160160
</div>
161161
</div>
162-
<div className='flex flex-col items-center'>
163-
<div className="py-4 px-6 max-w-sm md:max-w-full text-center">Feel free to text, call, email, discord us with any questions or concerns.</div>
164-
<div className="font-bangers text-big-red text-center pb-10 text-3xl md:text-5xl">
165-
We can{"'"}t wait to see you!
166-
</div>
167-
</div>
168162
</div>
169163
)
170164

165+
const RSVP = () => (
166+
<div className='bg-ltyellowbg flex flex-col items-center py-8'>
167+
<div className="font-bangers text-big-red text-center py-2 text-3xl md:text-5xl">
168+
We can{"'"}t wait to see you!
169+
</div>
170+
<div className='p-4'>
171+
<button className="bg-big-red rounded-xl text-white px-4 py-2 w-20 hover:bg-fire-opal">
172+
<a className="uppercase" href="https://forms.gle/84zQh1WGK6mvrrzV9" target="_blank" rel="noreferrer">
173+
RSVP
174+
</a>
175+
</button>
176+
</div>
177+
<div className='text-center p-2'>
178+
Please RSVP by Tuesday October 11, 2022
179+
</div>
180+
</div>
181+
)
171182
return (
172183
<>
173184
<Navbar sections={[
@@ -188,6 +199,7 @@ function Main() {
188199
<Location />
189200
<Schedule />
190201
<Details />
202+
<RSVP />
191203
<footer className='bg-alice-blue h-20 flex items-center justify-center text-center px-6'>
192204
This website was made with love by Michelley and Audrow
193205
</footer>

0 commit comments

Comments
 (0)