Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
409 B

import AboutHeader from 'components/about-header/index';
import PageFooter from 'components/page-footer/index';
import TopNav from 'components/top-nav';
import DefaultLayout from 'layouts/default/index';
import FaqList from 'components/faq-list/index';
const About = () => (
<DefaultLayout>
<TopNav />
<AboutHeader />
<FaqList />
<PageFooter />
</DefaultLayout>
);
export default About;