Skip to content

Commit

Permalink
Add simple registry landing page for opentofu/opentofu#942 (#232)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Mesh <[email protected]>
  • Loading branch information
cam72cam authored Dec 8, 2023
1 parent 9f4d827 commit 5c4156b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/pages/registry.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React from "react";
import Layout from "@theme/Layout";
import Jumbotron from "../components/Jumbotron";
import Link from "@docusaurus/Link";
import Headline from "../components/Headline";
import TextContent from "../components/TextContent";

export default function FAQ() {
return (
<Layout title="Registry">
<Jumbotron>
<Headline>OpenTofu Registry</Headline>
</Jumbotron>
<TextContent className="mb-4 md:mb-10 mx-auto px-4">
The OpenTofu Registry contains providers and modules to be used with OpenTofu. In order to view the catalogue of providers / modules, or
if you’d like to submit new providers / modules, please head to <Link href="https://github.com/opentofu/registry/">https://github.com/opentofu/registry/</Link>.
</TextContent>
</Layout>
);
}

0 comments on commit 5c4156b

Please sign in to comment.