Skip to content

Commit

Permalink
Add redirect /security-policy to tanzu website
Browse files Browse the repository at this point in the history
  • Loading branch information
oodamien committed Nov 21, 2023
1 parent 3b9af11 commit 852d13d
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 26 deletions.
15 changes: 15 additions & 0 deletions gatsby-node.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
const redirects = require("./redirects");

exports.createPages = ({ actions, graphql }) => {
const { createPage, createRedirect } = actions;
// Redirects
redirects.forEach((redirect) => {
createRedirect({
fromPath: redirect.from,
toPath: redirect.to,
redirectInBrowser: true,
isPermanent: true,
});
});

};
6 changes: 6 additions & 0 deletions redirects.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = [
{
from: "/security-policy",
to: "https://tanzu.vmware.com/security",
},
];
56 changes: 30 additions & 26 deletions src/pages/404.tsx
Original file line number Diff line number Diff line change
@@ -1,49 +1,53 @@
import * as React from "react"
import { Link, HeadFC, PageProps } from "gatsby"
import * as React from "react";
import { Link, HeadFC, PageProps } from "gatsby";

const pageStyles = {
color: "#232129",
padding: "96px",
fontFamily: "-apple-system, Roboto, sans-serif, serif",
}
};
const headingStyles = {
marginTop: 0,
marginBottom: 64,
maxWidth: 320,
}
};

const paragraphStyles = {
marginBottom: 48,
}
};
const codeStyles = {
color: "#8A6534",
padding: 4,
backgroundColor: "#FFF4DB",
fontSize: "1.25rem",
borderRadius: 4,
}
};

const browser = typeof window !== "undefined" && window;

const NotFoundPage: React.FC<PageProps> = () => {
return (
<main style={pageStyles}>
<h1 style={headingStyles}>Page not found</h1>
<p style={paragraphStyles}>
Sorry 😔, we couldn’t find what you were looking for.
<br />
{process.env.NODE_ENV === "development" ? (
<>
<br />
Try creating a page in <code style={codeStyles}>src/pages/</code>.
<br />
</>
) : null}
<br />
<Link to="/">Go home</Link>.
</p>
</main>
)
}
browser && (
<main style={pageStyles}>
<h1 style={headingStyles}>Page not found</h1>
<p style={paragraphStyles}>
Sorry 😔, we couldn’t find what you were looking for.
<br />
{process.env.NODE_ENV === "development" ? (
<>
<br />
Try creating a page in <code style={codeStyles}>src/pages/</code>.
<br />
</>
) : null}
<br />
<Link to="/">Go home</Link>.
</p>
</main>
)
);
};

export default NotFoundPage
export default NotFoundPage;

export const Head: HeadFC = () => <title>Not found</title>
export const Head: HeadFC = () => <title>Not found</title>;

0 comments on commit 852d13d

Please sign in to comment.