diff --git a/web/pages/labs/index.tsx b/web/pages/labs/index.tsx
new file mode 100644
index 00000000..6ea861a3
--- /dev/null
+++ b/web/pages/labs/index.tsx
@@ -0,0 +1,43 @@
+import Masonry from 'react-masonry-css'
+import { Page } from 'web/components/page'
+import { SiteLink } from 'web/components/site-link'
+import { Title } from 'web/components/title'
+
+export default function LabsPage() {
+ return (
+
+
+
+
+
+
+
+ )
+}
+
+const LabCard = (props: {
+ title: string
+ description: string
+ href: string
+}) => {
+ const { title, description, href } = props
+ return (
+
+
+ {title}
+
+ {description}
+
+ )
+}