We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9a35c2 commit 0e74edeCopy full SHA for 0e74ede
1 file changed
src/pages/products.tsx
@@ -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