import React from "react"; import { FormattedMessage, FormattedHTMLMessage } from 'react-intl'; // Images import AboutImage1 from '../../assets/img/about/ab1.png'; import AboutImage2 from '../../assets/img/about/ab2.png'; import AboutImage3 from '../../assets/img/about/ab3.png'; import AboutImage4 from '../../assets/img/about/ab4.png'; import AboutImage5 from '../../assets/img/about/ab5.png'; /** * The about section of the home page. */ class AboutSection extends React.Component { constructor(props) { super(props); this.state = { width: 0, height: 0 }; this.updateWindowDimensions = this.updateWindowDimensions.bind(this); } componentDidMount() { this.updateWindowDimensions(); window.addEventListener('resize', this.updateWindowDimensions); } componentWillUnmount() { window.removeEventListener('resize', this.updateWindowDimensions); } updateWindowDimensions() { this.setState({ width: window.innerWidth, height: window.innerHeight }); } render() { const fontSize = (this.state.width > 1000) ? 16 * (1 + (this.state.width/5000)): 16; return (













); } } export { AboutSection };