-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: Glueops -> GlueOps * remove dataops/devops aws marketplace links * feat: redirect to first documentation page
- Loading branch information
1 parent
722c079
commit f9ae20c
Showing
2 changed files
with
31 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,6 @@ | ||
import React from "react"; | ||
import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; | ||
import Layout from "@theme/Layout"; | ||
import HeroGlueops from "@site/src/components/hero-glueops"; | ||
import PublishWithGlueops from "@site/src/components/publish-with-glueops"; | ||
import PoweredByNx from "@site/src/components/powered-by-nx"; | ||
import AboutGlueops from "@site/src/components/about-glueops"; | ||
import HeroUpgrade from "../components/hero-upgrade"; | ||
import { Redirect } from 'react-router-dom'; | ||
|
||
export default function Home(): JSX.Element { | ||
const { siteConfig } = useDocusaurusContext(); | ||
return ( | ||
<Layout | ||
title="Documentation" | ||
description="GlueOps simplifies and optimizes your business’s DevOps and DataOps, allowing for efficient management and operation." | ||
> | ||
<main> | ||
<HeroGlueops /> | ||
<PoweredByNx /> | ||
<PublishWithGlueops /> | ||
<AboutGlueops /> | ||
<HeroUpgrade /> | ||
</main> | ||
</Layout> | ||
); | ||
return <Redirect to="/docs/introduction" />; | ||
} |