Skip to content

Commit 0e74ede

Browse files
committed
create product page
1 parent e9a35c2 commit 0e74ede

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

src/pages/products.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import React from "react";
2+
import Layout from "@theme/Layout";
3+
import HomepageDemos from "../components/Demos";
4+
5+
export default function Products(): JSX.Element {
6+
return (
7+
// @ts-expect-error Temporary suppress for Docusaurus component types
8+
<Layout
9+
title="Products"
10+
description="Interactive demos of the Postcodes.io API endpoints"
11+
>
12+
<main>
13+
<HomepageDemos />
14+
</main>
15+
</Layout>
16+
);
17+
}

0 commit comments

Comments
 (0)