Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
619 Bytes
import React from 'react';
import PropTypes from 'prop-types';
import styled from 'styled-components';
import { Layout, Hero, About, Jobs, Featured, Projects, Contact } from '@components';
const StyledMainContainer = styled.main`
counter-reset: section;
`;
const IndexPage = ({ location }) => (
<Layout location={location}>
<StyledMainContainer className="fillHeight">
<Hero />
<About />
<Jobs />
<Featured />
<Projects />
<Contact />
</StyledMainContainer>
</Layout>
);
IndexPage.propTypes = {
location: PropTypes.object.isRequired,
};
export default IndexPage;