2023-05-20 20:17:35 +10:00
|
|
|
import Image from "next/legacy/image";
|
2022-06-28 09:28:00 +10:00
|
|
|
import { Link } from 'react-router-dom';
|
|
|
|
|
import config from '../data/internal/config'
|
2021-02-04 14:27:14 +11:00
|
|
|
|
2022-06-28 09:28:00 +10:00
|
|
|
const ShowSideBar = (props) => {
|
|
|
|
|
return(
|
2021-02-04 14:27:14 +11:00
|
|
|
<div className="side_content col-md-3">
|
|
|
|
|
<Image
|
2022-06-28 09:28:00 +10:00
|
|
|
src={config.siteURL + props.props.data[0].attributes.Logo.data.attributes.url}
|
|
|
|
|
height={props.props.data[0].attributes.Logo.data.attributes.height}
|
|
|
|
|
width={props.props.data[0].attributes.Logo.data.attributes.width}
|
2021-02-04 14:27:14 +11:00
|
|
|
/>
|
2022-06-28 09:28:00 +10:00
|
|
|
<div dangerouslySetInnerHTML={{ __html: props.props.data[0].attributes.Description }}></div>
|
|
|
|
|
<h2>Feeds</h2>
|
|
|
|
|
<div><a href={props.props.data[0].attributes.iTunesLink}>
|
|
|
|
|
<img src="/images/iTunes.png" alt="Get it on iTunes"></img>
|
|
|
|
|
</a></div>
|
|
|
|
|
<div><a href={props.props.data[0].attributes.rssLink+".xml"}>
|
|
|
|
|
<img src="/images/rss.png" alt="RSS Feed"></img>
|
|
|
|
|
</a></div>
|
|
|
|
|
</div>);
|
|
|
|
|
}
|
2021-02-04 14:27:14 +11:00
|
|
|
|
|
|
|
|
export default ShowSideBar
|