src/containers/Homepage/CollegeLutheran.tsx
function CollegeLutheran(): JSX.Element {
return (
<div
style={{ boxShadow: '0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.4)', height: '500px' }}
>
<img
style={{ width: '95%', height: '455px' }}
alt="College Lutheran Church Homepage"
src="https://dl.dropboxusercontent.com/s/354maifx0dkzt9s/Screenshot%20from%202019-02-22%2016-01-50.png?dl=0"
/>
<br />
<a
href="https://www.collegelutheran.org"
target="_blank"
rel="noreferrer noopener"
>
Collegelutheran.org
</a>
</div>
);
}
export default CollegeLutheran;