Skip to content

Commit

Permalink
Feat/updates (#51)
Browse files Browse the repository at this point in the history
* fix: Glueops -> GlueOps

* remove dataops/devops aws marketplace links

* feat: redirect to first documentation page
  • Loading branch information
venkatamutyala authored Jan 23, 2024
1 parent 722c079 commit f9ae20c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 51 deletions.
58 changes: 29 additions & 29 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ const getGtagID = () => {

/** @type {import('@docusaurus/types').Config} */
const config = {
title: "Glueops",
title: "GlueOps",
tagline: "Dataops and Devops platform",
url: process.env.CONFIG_URL || "https://localhost/",
baseUrl: "/docs",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "https://cdn.glueops.dev/logos/logo.png",
organizationName: "Glueops",
organizationName: "GlueOps",
projectName: "website",
deploymentBranch: "master",
trailingSlash: false,
Expand Down Expand Up @@ -98,9 +98,9 @@ const config = {
{ name: "og:image", content: "https://cdn.glueops.dev/doc-assets/v1/logos/logo.png" },
],
navbar: {
title: "Glueops",
title: "GlueOps",
logo: {
alt: "Glueops Logo",
alt: "GlueOps Logo",
src: "https://cdn.glueops.dev/logos/logo.png",
srcDark: "https://cdn.glueops.dev/logos/logo.png",
},
Expand All @@ -116,36 +116,36 @@ const config = {
event_label: "Docs header event",
},
},
{
href: "https://aws.amazon.com/marketplace/pp/prodview-mfwjl2qdvhaes?sr=0-1&ref_=beagle&applicationId=AWSMPContessa",
"aria-label": "Purchase DataOps on Amazon Marketplace",
position: "right",
title: "Purchase DataOps on Amazon Marketplace",
label: "Purchase DataOps on Amazon Marketplace",
analytics: {
event_name: "purchase_dataops_event",
event_category: "Purchase",
event_label: "Purchase DataOps header event",
},
},
{
href: "https://aws.amazon.com/marketplace/pp/prodview-soaz2d3nlms6k?sr=0-2&ref_=beagle&applicationId=AWSMPContessa",
"aria-label": "Purchase DevOps on Amazon Marketplace",
position: "right",
title: "Purchase DevOps on Amazon Marketplace",
label: "Purchase DevOps on Amazon Marketplace",
analytics: {
event_name: "purchase_devops_event",
event_category: "Purchase",
event_label: "Purchase DevOps header event",
},
},
// {
// href: "https://aws.amazon.com/marketplace/pp/prodview-mfwjl2qdvhaes?sr=0-1&ref_=beagle&applicationId=AWSMPContessa",
// "aria-label": "Purchase DataOps on Amazon Marketplace",
// position: "right",
// title: "Purchase DataOps on Amazon Marketplace",
// label: "Purchase DataOps on Amazon Marketplace",
// analytics: {
// event_name: "purchase_dataops_event",
// event_category: "Purchase",
// event_label: "Purchase DataOps header event",
// },
// },
// {
// href: "https://aws.amazon.com/marketplace/pp/prodview-soaz2d3nlms6k?sr=0-2&ref_=beagle&applicationId=AWSMPContessa",
// "aria-label": "Purchase DevOps on Amazon Marketplace",
// position: "right",
// title: "Purchase DevOps on Amazon Marketplace",
// label: "Purchase DevOps on Amazon Marketplace",
// analytics: {
// event_name: "purchase_devops_event",
// event_category: "Purchase",
// event_label: "Purchase DevOps header event",
// },
// },
{
href: "https://github.com/GlueOps/glueops-dev",
className: "header-github-link",
"aria-label": "GitHub repository",
position: "right",
title: "Glueops on Github",
title: "GlueOps on Github",
analytics: {
event_name: "github_event",
event_category: "GitHub",
Expand Down
24 changes: 2 additions & 22 deletions src/pages/index.tsx
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" />;
}

0 comments on commit f9ae20c

Please sign in to comment.