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

18 lines
439 B

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