Skip to content

Commit a09104d

Browse files
authored
Fix docs site redirect and README links (#1711)
1 parent 5b7c9a4 commit a09104d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Forked from [herocast](https://github.com/hellno/herocast/) in April 2024.
77

88
# Docs
99

10-
📚 **[View Documentation](https://blankdotspace.github.io/space-system/)** - Full documentation site
10+
📚 **[View Full Documentation](https://blankdotspace.github.io/space-system/docs/)**
1111

1212
Quick links:
13-
- [Getting Started](https://blankdotspace.github.io/space-system/docs/getting-started) - Local development setup
14-
- [Architecture](https://blankdotspace.github.io/space-system/docs/architecture/overview) - System design
15-
- [Contributing](https://blankdotspace.github.io/space-system/docs/contributing) - How to contribute
13+
- [Getting Started](docs/GETTING_STARTED.md) - Local development setup
14+
- [Architecture](docs/ARCHITECTURE/OVERVIEW.md) - System design
15+
- [Contributing](docs/CONTRIBUTING.MD) - How to contribute
1616

17-
> Source files are in [`docs/`](docs/) and [`docs-site/`](docs-site/)
17+
> Documentation source: [`docs/`](docs/) • Docusaurus site: [`docs-site/`](docs-site/)
1818
1919
## What is Farcaster?
2020
a protocol for decentralized social apps: https://www.farcaster.xyz

docs-site/src/pages/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import React from 'react';
22
import {Redirect} from '@docusaurus/router';
33

44
export default function Home(): React.JSX.Element {
5-
// Redirect to the docs README which serves as the landing page
6-
return <Redirect to="/README" />;
5+
// Redirect to the docs landing page
6+
return <Redirect to="/docs/" />;
77
}

0 commit comments

Comments
 (0)