Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: missing redirects /docs -> /
Browse files Browse the repository at this point in the history
venkatamutyala authored Jan 26, 2025

Verified

This commit was signed with the committer’s verified signature.
1 parent 6904f68 commit 258a6ff
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -181,7 +181,7 @@ const config = {
items: [
{
label: "Docs",
to: "/docs/introduction",
to: "/introduction",
analytics: {
event_name: "docs_event",
event_category: "Docs",
2 changes: 1 addition & 1 deletion src/components/hero-glueops.tsx
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ export default function HeroGlueops(): JSX.Element {
</p>
<div className="padding-vert--md row">
<div className="col col--5">
<a href="/docs/introduction" className="button button--lg button--block button--primary" onClick={
<a href="/introduction" className="button button--lg button--block button--primary" onClick={
() => logEvent('get_started_event', { event_category: 'Docs', event_label: "Docs button event" })
}>
Get Started
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -2,5 +2,5 @@ import React from "react";
import { Redirect } from 'react-router-dom';

export default function Home(): JSX.Element {
return <Redirect to="/docs/introduction" />;
return <Redirect to="/introduction" />;
}

0 comments on commit 258a6ff

Please sign in to comment.