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.
Portfolio/src/pages/index.tsx

18 lines
424 B

4 years ago
import Projects from '@components/Projects';
3 years ago
import Landing from '@components/Landing';
4 years ago
import Contact from '@components/Contact';
import Layout from '@components/Layout';
3 years ago
import Page from '@components/Page';
const Home = () => (
4 years ago
<Page description="A simple portfolio website to display my projects." title="Projects">
<Layout>
<Landing />
<Projects />
<Contact />
</Layout>
</Page>
);
export default Home;