1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 22:48:29 -04:00
jarv.is/pages/index.tsx
2021-12-30 08:18:41 -05:00

14 lines
270 B
TypeScript

import Layout from "../components/Layout";
import Container from "../components/Container";
import Home from "../components/home/Home";
export default function Index() {
return (
<Layout>
<Container>
<Home />
</Container>
</Layout>
);
}