All files / src/constants links.ts

0% Statements 0/3
100% Branches 0/0
100% Functions 0/0
0% Lines 0/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76                                                                                                                                                       
import type { IMenuItems } from "../components/NavPopover";
 
export const CONSTRUCT_HUB_REPO_URL =
  "https://github.com/cdklabs/construct-hub";
 
export const GETTING_STARTED: IMenuItems = [
  { display: "FAQ", isNavLink: true, url: "/faq" },
  {
    display: "Construct Hub on GitHub",
    url: CONSTRUCT_HUB_REPO_URL,
  },
  {
    display: "Issues on GitHub",
    url: `${CONSTRUCT_HUB_REPO_URL}/issues`,
  },
  {
    display: "Community",
    links: [
      {
        display: "Slack",
        url: "https://join.slack.com/t/cdk-dev/shared_invite/zt-1mvwihbtu-DKhqC~KdwbO4rY837rAQRg",
      },
    ],
  },
];
 
export const DOCUMENTATION: IMenuItems = [
  {
    display: "AWS CDK",
    links: [
      { display: "Home", url: "https://aws.amazon.com/cdk/" },
      {
        display: "Getting Started",
        url: "https://docs.aws.amazon.com/cdk/latest/guide/getting_started.html",
      },
      { display: "Workshop", url: "https://cdkworkshop.com/" },
      {
        display: "Best Practices",
        url: "https://docs.aws.amazon.com/cdk/latest/guide/best-practices.html",
      },
    ],
  },
  {
    display: "CDK for Terraform",
    links: [
      {
        display: "Getting Started",
        url: "https://developer.hashicorp.com/terraform/cdktf",
      },
      {
        display: "Tutorials",
        url: "https://developer.hashicorp.com/terraform/tutorials/cdktf",
      },
    ],
  },
  {
    display: "CDK for Kubernetes",
    links: [
      { display: "Home", url: "https://cdk8s.io" },
      {
        display: "Getting Started",
        url: "https://cdk8s.io/docs/latest/getting-started",
      },
      { display: "Documentation", url: "https://cdk8s.io/docs/latest" },
      {
        display: "API Reference",
        url: "https://cdk8s.io/docs/latest/reference/index.html",
      },
    ],
  },
  {
    display: "Community",
    links: [{ display: "Community Hub", url: "https://cdk.dev" }],
  },
];