mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 22:48:29 -04:00
14 lines
270 B
TypeScript
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>
|
|
);
|
|
}
|