Skip to content

Commit

Permalink
Add Watch Events info bubble on home page
Browse files Browse the repository at this point in the history
  • Loading branch information
motenko committed Dec 24, 2024
1 parent e3849d7 commit 934da88
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/containers/homepage/AboutSection.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import WordpressInject from '../wordpress/wordpressInject';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faComments } from '@fortawesome/free-solid-svg-icons';
import { faComments, faCalendarDays } from '@fortawesome/free-solid-svg-icons';

import style from './style.module.scss';

Expand All @@ -13,6 +13,22 @@ const AboutSection = () => {
<div className='col-lg-12'>
<WordpressInject slug='agr-summary-homepage' />
</div>
<div className='col-md-4'>
<a
className='text-decoration-none'
href='/event-calendar'
rel="noopener noreferrer"
>
<div className='alert alert-secondary'>
<h4 className='alert-heading'>
<FontAwesomeIcon icon={faCalendarDays} /> Watch Live Events
</h4>
<p>
Register for scheduled webinars and view previous recorded Alliance events.
</p>
</div>
</a>
</div>
<div className='col-md-4'>
<a
className='text-decoration-none'
Expand Down

0 comments on commit 934da88

Please sign in to comment.