added info to about page

This commit is contained in:
StevanFreeborn
2022-06-26 11:39:44 -05:00
parent 521705e45c
commit 7ff302a41d
5 changed files with 122 additions and 7 deletions
+35 -2
View File
@@ -1,8 +1,41 @@
import React from 'react';
import Loading from '../components/loading';
import Container from 'react-bootstrap/Container';
import Row from 'react-bootstrap/Row';
import Col from 'react-bootstrap/Col';
import AboutSection from '../components/aboutSection';
import { aboutSections as sections } from '../constants';
export default function About() {
const getSections = () => {
return sections.map(section => {
return <AboutSection section={section}/>
});
}
return (
<p>Coming soon...</p>
<Container>
<Row>
<Col>
<h1 className='text-center py-4'>Wanna know more?</h1>
</Col>
</Row>
{getSections()}
</Container>
);
}