speice.io/pages/index.tsx

11 lines
191 B
TypeScript
Raw Normal View History

2023-04-16 20:10:40 -04:00
import Layout from "./LayoutPage";
2023-04-15 12:55:22 -04:00
2023-04-16 20:10:40 -04:00
export default function () {
2023-04-15 12:56:22 -04:00
return (
2023-04-16 20:10:40 -04:00
<Layout>
2023-04-15 12:56:22 -04:00
<p>Is this thing on?</p>
2023-04-21 21:39:53 -04:00
<a href="/2019/02/the-whole-world">Code</a>
2023-04-16 20:10:40 -04:00
</Layout>
2023-04-15 12:56:22 -04:00
);
}