speice.io/pages/index.tsx

13 lines
214 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 23:03:34 -04:00
<p>
<a href="/2019/02/the-whole-world">Code</a>
</p>
2023-04-16 20:10:40 -04:00
</Layout>
2023-04-15 12:56:22 -04:00
);
}